Total Complexity | 2 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class LsfHidden extends Input |
||
9 | { |
||
10 | // Interface this.... |
||
11 | |||
12 | protected string $type = 'input'; |
||
13 | |||
14 | /** |
||
15 | * All the Validation rules for this Input |
||
16 | * |
||
17 | * @return mixed |
||
18 | */ |
||
19 | public function errorMessages(): mixed |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * Returns the Input’s response after the form has been submitted and validated |
||
26 | * |
||
27 | * @param $input |
||
28 | * @return array |
||
29 | */ |
||
30 | public function response($input): array |
||
39 | } |