| 1 | <?php |
||
| 8 | class CheckBox extends FieldAbstract implements ArrayValueInterface |
||
| 9 | { |
||
| 10 | use CanRenderInlineTrait; |
||
| 11 | |||
| 12 | /** @var bool $isChecked */ |
||
| 13 | private $isChecked; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @return string |
||
| 17 | */ |
||
| 18 | public function getTag() |
||
| 22 | |||
| 23 | public function init() |
||
| 28 | |||
| 29 | /** |
||
| 30 | 8 | * @return bool |
|
| 31 | */ |
||
| 32 | 8 | public function isChecked(): bool |
|
| 36 | |||
| 37 | /** |
||
| 38 | * @param bool $isChecked |
||
| 39 | */ |
||
| 40 | public function setIsChecked(bool $isChecked): void |
||
| 44 | } |