Conditions | 1 |
Paths | 1 |
Total Lines | 19 |
Code Lines | 0 |
Lines | 0 |
Ratio | 0 % |
Tests | 1 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | 8 | public function __construct( |
|
16 | /** |
||
17 | * The key that will store the value into database. Mandatory to have this item. |
||
18 | */ |
||
19 | public string $field, |
||
20 | /** |
||
21 | * The label that will be displayed. Mandatory |
||
22 | */ |
||
23 | public string $prompt, |
||
24 | /** |
||
25 | * The default value when the value isn't provided. |
||
26 | * Not mandatory to have this item |
||
27 | */ |
||
28 | public string $default = '', |
||
29 | /** |
||
30 | * Default: false. Not mandatory to have this item |
||
31 | */ |
||
32 | public bool $optional = false, |
||
33 | ) { |
||
34 | 8 | } |
|
46 |