Passed
Push — main ( d7b54e...a1a461 )
by Thomas
02:43
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 Middleware) {
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
@@ -228,7 +228,7 @@
 block discarded – undo
228 228
         $middlewareAttributes = $view->attributes(Middleware::class);
229 229
 
230 230
         return array_map(
231
-            function (
231
+            function(
232 232
                 Middleware|PsrMiddleware|callable|string $middleware
233 233
             ) use ($registry): Middleware|PsrMiddleware {
234 234
                 if (
Please login to merge, or discard this patch.