Passed
Pull Request — master (#318)
by Sam
03:16
created
src/Error/Handler/ErrorHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,12 +28,12 @@
 block discarded – undo
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
             };
Please login to merge, or discard this patch.