@@ -28,12 +28,12 @@ |
||
28 | 28 | */ |
29 | 29 | public function handle(ExecutionException $exception, ExecutionContext $context): void |
30 | 30 | { |
31 | - $next = function () { |
|
31 | + $next = function() { |
|
32 | 32 | // NO-OP |
33 | 33 | }; |
34 | 34 | |
35 | 35 | foreach (\array_reverse($this->middleware) as $mw) { |
36 | - $next = function (ExecutionException $exception, ExecutionContext $context) use ($mw, $next) { |
|
36 | + $next = function(ExecutionException $exception, ExecutionContext $context) use ($mw, $next) { |
|
37 | 37 | /** @var ErrorMiddlewareInterface $mw */ |
38 | 38 | return $mw->handle($exception, $context, $next); |
39 | 39 | }; |