Skip to content

Commit 21b319d

Browse files
authored
Add parseVerbosity to the default on handleStream. (#920)
Fixes: #918
1 parent 39ea392 commit 21b319d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Commands/Concerns/InteractsWithIO.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ public function handleStream($stream, $verbosity = null)
248248
'throwable' => $this->throwableInfo($stream, $verbosity),
249249
'shutdown' => $this->shutdownInfo($stream, $verbosity),
250250
'raw' => $this->raw(json_encode($stream)),
251-
default => $this->components->info(json_encode($stream), $verbosity)
251+
default => $this->components->info(json_encode($stream), $this->parseVerbosity($verbosity))
252252
};
253253
}
254254
}

0 commit comments

Comments
 (0)