| 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 SIGNAL_NOT_ALLOWED = 'Trying to dispatch a signal that was not allowed by the middleware "%s". Authorized signals for this middleware are: "%s".'; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @code 1485786285 |
||
| 26 | * |
||
| 27 | * @return self |
||
| 28 | */ |
||
| 29 | final public static function fieldViewHelperEmptyLayout() |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @code 1490798201 |
||
| 39 | * |
||
| 40 | * @param SendsMiddlewareSignal $middleware |
||
| 41 | * @return InvalidArgumentValueException |
||
| 42 | */ |
||
| 43 | final public static function signalNotAllowed(SendsMiddlewareSignal $middleware) |
||
| 56 | } |
||
| 57 |