| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 1 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | public function __construct( |
||
| 14 | public ?string $label = null, |
||
| 15 | public ?string $hint = null, |
||
| 16 | public ?string $hintClass = 'fieldset-label', |
||
| 17 | public ?bool $inline = false, |
||
| 18 | |||
| 19 | // Validations |
||
| 20 | public ?string $errorClass = 'text-error', |
||
| 21 | public ?bool $omitError = false, |
||
| 22 | public ?bool $firstErrorOnly = false, |
||
| 23 | ) { |
||
| 24 | $this->uuid = md5(serialize($this)); |
||
| 25 | } |
||
| 45 |