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