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