| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 45 | public function __construct( |
||
| 46 | string $adminName, |
||
| 47 | string $actionName, |
||
| 48 | string $fieldName, |
||
| 49 | string $entityClass, |
||
| 50 | string $type = null, |
||
| 51 | FieldInterface $field = null |
||
| 52 | ) { |
||
| 53 | $this->adminName = $adminName; |
||
| 54 | $this->actionName = $actionName; |
||
| 55 | $this->fieldName = $fieldName; |
||
| 56 | $this->type = $type; |
||
| 57 | $this->field = $field; |
||
| 58 | $this->entityClass = $entityClass; |
||
| 59 | } |
||
| 133 |