Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class TextField extends FieldAbstract |
||
14 | { |
||
15 | protected Configuration $config; |
||
16 | |||
17 | /** |
||
18 | * constructor. |
||
19 | * @param Configuration $config |
||
20 | */ |
||
21 | 15 | public function __construct(Configuration $config) |
|
24 | 15 | } |
|
25 | |||
26 | /** |
||
27 | * TextField init. |
||
28 | * @param array $arguments |
||
29 | * @throws Exception |
||
30 | */ |
||
31 | 15 | public function init(array $arguments): FieldInterface |
|
39 |