for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Win\Html\Form;
/**
* Checkbox
* <input type="checkbox">
*
*/
class Checkbox {
* Retorna "checked" se os valores são iguais
* @param mixed $value1
* @param mixed $value2
* @return string
public static function check($value1, $value2 = true) {
return ($value1 == $value2) ? 'checked ' : '';
}