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