Passed
Push — master ( 0e469d...535771 )
by Jelmer
02:01
created
src/Controller/CallableController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 
15 15
     public static function factoryFromCallable(\Closure $closure): callable
16 16
     {
17
-        return function () use ($closure) {
17
+        return function() use ($closure) {
18 18
             return self::fromCallable($closure);
19 19
         };
20 20
     }
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
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
         array $defaults = [],
90 90
         array $requirements = [],
91 91
         ?\Closure $configCallback = null
92
-    ): void
92
+    ) : void
93 93
     {
94 94
         $symfonyRoute = new Route($path, $defaults, $requirements);
95 95
         $symfonyRoute->setMethods(explode('|', $methods))
Please login to merge, or discard this patch.