| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | final public static function fieldViewHelperFieldNotAccessibleInForm(FormObject $formObject, $fieldName) |
||
| 32 | { |
||
| 33 | /** @var self $exception */ |
||
| 34 | $exception = self::getNewExceptionInstance( |
||
| 35 | self::FIELD_NOT_ACCESSIBLE_IN_FORM, |
||
| 36 | [$formObject->getClassName(), $fieldName] |
||
| 37 | ); |
||
| 38 | |||
| 39 | return $exception; |
||
| 40 | } |
||
| 41 | |||
| 55 |