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