| 1 | <?php |
||
| 6 | abstract class BaseCheckedElement extends AbstractElement |
||
| 7 | { |
||
| 8 | public $checked = false; |
||
| 9 | |||
| 10 | public function __construct(?string $name = null, ?string $value = '1', ?bool $state = false) |
||
| 20 | |||
| 21 | public function checked(?bool $state = true) |
||
| 25 | |||
| 26 | public function beforeElementPrepareToRender(): void |
||
| 30 | } |