Passed
Push — master ( 04d92b...eca95b )
by Alexander
01:37
created
src/Router.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
 
106 106
             $parameters = array_filter(
107 107
                 $matches,
108
-                function ($v) {
108
+                function($v) {
109 109
                     return !is_int($v);
110 110
                 },
111 111
                 \ARRAY_FILTER_USE_KEY
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
         $url = self::$aliases[$url] ?? $url;
129 129
         return new Route(
130 130
             $url,
131
-            function (Request $request): ?Response {
131
+            function(Request $request): ?Response {
132 132
                 $page = response\Page::fromRequest($request);
133 133
                 // @TODO BC breaking, but move this?
134 134
                 return $page->isValid() ? $page : null;
Please login to merge, or discard this patch.