1 | <?php |
||
20 | final class EndMiddleware implements BasicMiddlewareInterface, SendsMiddlewareSignal |
||
21 | { |
||
22 | use StateMiddlewareDependencyTrait; |
||
23 | |||
24 | /** |
||
25 | * This is the last middleware being called, it will send a signal to all |
||
26 | * middlewares that depend on it. |
||
27 | */ |
||
28 | public function execute() |
||
34 | |||
35 | /** |
||
36 | * Will inject the form result, that was manipulated by other middlewares, |
||
37 | * in the current request. |
||
38 | */ |
||
39 | protected function injectFormResultInRequest() |
||
49 | |||
50 | /** |
||
51 | * @return array |
||
52 | */ |
||
53 | public function getAllowedSignals() |
||
57 | } |
||
58 |