Test Failed
Push — master ( d0ccd8...c4750a )
by Derek Stephen
02:31
created
src/Command/RouterCommand.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,11 +60,11 @@
 block discarded – undo
60 60
             $middlewared = $this->isMiddlewared($method, $path);
61 61
 
62 62
             if ($blocked) {
63
-               $path = '<fg=red>' .$path . '</>';
63
+                $path = '<fg=red>' .$path . '</>';
64 64
             }
65 65
 
66 66
             if ($middlewared) {
67
-               $path = '<fg=magenta>' .$path . '</>';
67
+                $path = '<fg=magenta>' .$path . '</>';
68 68
             }
69 69
 
70 70
             $paths[] = [$method, $path];
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
         }
48 48
 
49 49
         $routes = $this->router->getRoutes();
50
-        $sort = function (Route $a, Route $b) {
50
+        $sort = function(Route $a, Route $b) {
51 51
             return $a->getPath() <=> $b->getPath();
52 52
         };
53 53
         usort($routes, $sort);
@@ -60,11 +60,11 @@  discard block
 block discarded – undo
60 60
             $middlewared = $this->isMiddlewared($method, $path);
61 61
 
62 62
             if ($blocked) {
63
-               $path = '<fg=red>' .$path . '</>';
63
+               $path = '<fg=red>'.$path.'</>';
64 64
             }
65 65
 
66 66
             if ($middlewared) {
67
-               $path = '<fg=magenta>' .$path . '</>';
67
+               $path = '<fg=magenta>'.$path.'</>';
68 68
             }
69 69
 
70 70
             $paths[] = [$method, $path];
Please login to merge, or discard this patch.