| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class RadioComponent extends HtmlComponent |
||
| 8 | { |
||
| 9 | use Traits\InputLabelTrait; |
||
| 10 | use Traits\InputValidationTrait; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | public static string $tag = 'input'; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param bool $checked |
||
| 19 | * |
||
| 20 | * @return static |
||
| 21 | */ |
||
| 22 | public function checked(bool $checked = false): static |
||
| 28 |