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 | protected function beforeToParts(): void |
||
32 | |||
33 | public function __toString(): string |
||
39 | } |