| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | 5 | public function renderField(Field $field) |
|
| 10 | { |
||
| 11 | 5 | return view($field->view(), array_merge([ |
|
|
|
|||
| 12 | 5 | 'field' => $field, |
|
| 13 | 5 | 'key' => $field->key(), // As parameter so that it can be altered for translatable values |
|
| 14 | 5 | 'manager' => $this, |
|
| 15 | 5 | 'formElementView' => $field->formElementView(), |
|
| 16 | 5 | ]), $field->viewData())->render(); |
|
| 17 | } |
||
| 24 |