From 148c9cdfe6a4908b728918aa98a211946945160e Mon Sep 17 00:00:00 2001 From: Art4 Date: Sun, 12 Jan 2025 13:20:01 +0000 Subject: [PATCH] Fix PHP warning --- src/App.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.php b/src/App.php index 3ffce9114c..73f2913b1a 100644 --- a/src/App.php +++ b/src/App.php @@ -230,7 +230,7 @@ class App private function determineLogChannel(array $argv): string { - $command = strtolower($argv[1]) ?? ''; + $command = strtolower($argv[1] ?? ''); if ($command === 'daemon' || $command === 'jetstream') { return LogChannel::DAEMON;