1 | <?php |
||
19 | class SignalNotFoundException extends FormzException |
||
20 | { |
||
21 | const SIGNAL_NOT_FOUND = 'The middleware "%s" is not bound to any signal. Make sure that this middleware implements one (and one only) signal interface based on "%s".'; |
||
22 | |||
23 | /** |
||
24 | * @code 1490793544 |
||
25 | * |
||
26 | * @param AbstractMiddleware $middleware |
||
27 | * @return self |
||
28 | */ |
||
29 | final public static function signalNotFoundInMiddleware(AbstractMiddleware $middleware) |
||
39 | } |
||
40 |