| 1 | <?php |
||
| 8 | class CheckboxOptionsBuilder extends AbstractOptionsBuilder |
||
| 9 | { |
||
| 10 | use OptionAccessorsTrait; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @param mixed $value |
||
| 14 | * @return $this |
||
| 15 | * @link http://symfony.com/fr/doc/current/reference/forms/types/checkbox.html#value |
||
| 16 | */ |
||
| 17 | public function setValue($value) |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return mixed |
||
| 24 | */ |
||
| 25 | public function getValue() |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return string |
||
| 32 | */ |
||
| 33 | public static function getBuilderType() |
||
| 37 | } |
||
| 38 |