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