Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | public function __construct( |
||
19 | string $fieldName, |
||
20 | string $type = null, |
||
21 | array $options = [], |
||
22 | array $context = [], |
||
23 | FieldInterface $field = null |
||
24 | ) { |
||
25 | $this->fieldName = $fieldName; |
||
26 | $this->type = $type; |
||
27 | $this->field = $field; |
||
28 | $this->options = $options; |
||
29 | $this->context = $context; |
||
30 | } |
||
67 |