Passed
Push — main ( 4bfbca...f41f09 )
by Thomas
03:11
created
src/Dispatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
         if ($handler instanceof MiddlewareInterface) {
39 39
             return $handler(
40 40
                 $request,
41
-                function (Request $req) use ($queue): Response {
41
+                function(Request $req) use ($queue): Response {
42 42
                     return $this->handle(array_slice($queue, 1), $req);
43 43
                 }
44 44
             );
Please login to merge, or discard this patch.
src/Routing/Router.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -212,7 +212,7 @@
 block discarded – undo
212 212
         $middlewareAttributes = $view->attributes(MiddlewareInterface::class);
213 213
 
214 214
         return array_map(
215
-            function (
215
+            function(
216 216
                 MiddlewareInterface|PsrMiddlewareInterface|callable|string $middleware
217 217
             ) use ($registry): MiddlewareInterface|PsrMiddlewareInterface {
218 218
                 if (
Please login to merge, or discard this patch.