Passed
Push — master ( 4e2c3d...bb3428 )
by Caen
05:28 queued 21s
created
packages/framework/src/Console/Commands/RouteListCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 
31 31
         return match ($this->option('format')) {
32 32
             'txt' => $this->table($this->makeHeader($routes), $routes) ?? Command::SUCCESS,
33
-            'json' => $this->writeRaw(json_encode($routes, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES)) ?? Command::SUCCESS,
33
+            'json' => $this->writeRaw(json_encode($routes, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES)) ?? Command::SUCCESS,
34 34
             default => $this->error("Invalid format provided. Only 'txt' and 'json' are supported.") ?? Command::FAILURE,
35 35
         };
36 36
     }
Please login to merge, or discard this patch.