1 | <?php |
||
18 | class InvalidArgumentValueException extends FormzException |
||
19 | { |
||
20 | const FIELD_VIEW_HELPER_EMPTY_LAYOUT = 'The layout name cannot be empty, please fill with a value.'; |
||
21 | |||
22 | const FORM_NAME_EMPTY = 'The name of the form (type: "%s") can not be empty.'; |
||
23 | |||
24 | /** |
||
25 | * @code 1485786285 |
||
26 | * |
||
27 | * @return self |
||
28 | */ |
||
29 | final public static function fieldViewHelperEmptyLayout() |
||
36 | |||
37 | /** |
||
38 | * @code 1494515073 |
||
39 | * |
||
40 | * @param FormInterface $form |
||
41 | * @return self |
||
42 | */ |
||
43 | final public static function formNameEmpty(FormInterface $form) |
||
53 | } |
||
54 |