We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08333ee commit 267c621Copy full SHA for 267c621
core/console/Lister.php
@@ -66,10 +66,7 @@ private function logAllRoutes(): void
66
foreach ($routeList as $r) {
67
$m = $r['method'] == "GET" ? Helper::greenText($r['method']) : Helper::yellowText($r['method']);
68
69
- console_log(
70
- $m . "\t" . $r['uri'] .
71
- str_repeat(" ", $longestUriLength - strlen($r['uri'])) . Helper::blueText($r['action'])
72
- );
+ console_log($m . "\t" . $r['uri'] . str_repeat(" ", $longestUriLength - strlen($r['uri'])) . Helper::blueText($r['action']));
73
}
74
75
0 commit comments