1 | <?php |
||
18 | class MissingArgumentException extends FormzException |
||
19 | { |
||
20 | const ARGUMENT_MISSING = 'The argument "%s" was not found in the request.'; |
||
21 | |||
22 | const SIGNAL_NAME_MISSING = 'No signal has been given to the signal dispatcher, used in the middleware "%s". This is because this middleware can dispatch several signals (namely "%s"); so you must indicate which signal to dispatch.'; |
||
23 | |||
24 | /** |
||
25 | * @code 1490179179 |
||
26 | * |
||
27 | * @return self |
||
28 | */ |
||
29 | final public static function ajaxControllerNameArgumentNotSet() |
||
39 | |||
40 | /** |
||
41 | * @code 1490179250 |
||
42 | * |
||
43 | * @return self |
||
44 | */ |
||
45 | final public static function ajaxControllerClassNameArgumentNotSet() |
||
55 | |||
56 | /** |
||
57 | * @code 1490793826 |
||
58 | * |
||
59 | * @param SendsMiddlewareSignal $middleware |
||
60 | * @return MissingArgumentException |
||
61 | */ |
||
62 | final public static function signalNameArgumentMissing(SendsMiddlewareSignal $middleware) |
||
75 | } |
||
76 |