Total Complexity | 1 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | abstract class AbstractField implements AnnotationInterface |
||
14 | { |
||
15 | /** |
||
16 | * @var string |
||
17 | */ |
||
18 | public string $type; |
||
19 | |||
20 | /** |
||
21 | * @var array |
||
22 | */ |
||
23 | public array $fieldDescriptionOptions = []; |
||
24 | |||
25 | /** |
||
26 | * Get field settings. |
||
27 | * |
||
28 | * @return array |
||
29 | */ |
||
30 | public function getSettings(): array |
||
38 |