Skip to content

Commit 267c621

Browse files
committed
✨ Reformat
1 parent 08333ee commit 267c621

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

core/console/Lister.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,7 @@ private function logAllRoutes(): void
6666
foreach ($routeList as $r) {
6767
$m = $r['method'] == "GET" ? Helper::greenText($r['method']) : Helper::yellowText($r['method']);
6868

69-
console_log(
70-
$m . "\t" . $r['uri'] .
71-
str_repeat(" ", $longestUriLength - strlen($r['uri'])) . Helper::blueText($r['action'])
72-
);
69+
console_log($m . "\t" . $r['uri'] . str_repeat(" ", $longestUriLength - strlen($r['uri'])) . Helper::blueText($r['action']));
7370
}
7471
}
7572
}

0 commit comments

Comments
 (0)