From ecac8f5d359116adc7b009048d9bde3b2b668b4b Mon Sep 17 00:00:00 2001 From: Francisco Madeira Date: Mon, 1 Jul 2024 12:22:33 +0100 Subject: [PATCH] Add `parseVerbosity` to the default on `handleStream`. Fixes: #918 --- src/Commands/Concerns/InteractsWithIO.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/Concerns/InteractsWithIO.php b/src/Commands/Concerns/InteractsWithIO.php index 1bd2b2a08..4947d7266 100644 --- a/src/Commands/Concerns/InteractsWithIO.php +++ b/src/Commands/Concerns/InteractsWithIO.php @@ -248,7 +248,7 @@ public function handleStream($stream, $verbosity = null) 'throwable' => $this->throwableInfo($stream, $verbosity), 'shutdown' => $this->shutdownInfo($stream, $verbosity), 'raw' => $this->raw(json_encode($stream)), - default => $this->components->info(json_encode($stream), $verbosity) + default => $this->components->info(json_encode($stream), $this->parseVerbosity($verbosity)) }; } }