Total Complexity | 2 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class FormInputGroup extends Component |
||
6 | { |
||
7 | use HandlesValidationErrors; |
||
8 | |||
9 | public string $name; |
||
10 | public string $label; |
||
11 | |||
12 | /** |
||
13 | * Create a new component instance. |
||
14 | * |
||
15 | * @return void |
||
16 | */ |
||
17 | public function __construct(string $name = '', string $label = '', bool $showErrors = true) |
||
24 |