1 | <?php |
||
6 | class Radio 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 tag(): void |
||
30 | |||
31 | public function __toString() |
||
37 | } |