Passed
Push — master ( 5c220f...f4b46a )
by Jelmer
02:26
created
src/Router/RouterInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
         array $defaults = [],
25 25
         array $requirements = [],
26 26
         ?Closure $configCallback = null
27
-    ): void;
27
+    ) : void;
28 28
 
29 29
     /** Add route for GET request */
30 30
     public function get(
Please login to merge, or discard this patch.
src/Router/SymfonyRouter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
         array $defaults = [],
78 78
         array $requirements = [],
79 79
         ?Closure $configCallback = null
80
-    ): void
80
+    ) : void
81 81
     {
82 82
         $symfonyRoute = new Route($path, $defaults, $requirements);
83 83
         $symfonyRoute->setMethods(explode('|', $methods))
Please login to merge, or discard this patch.