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