From 5ef6225bf705a08e19e311d41ad1a8d10621e1cf Mon Sep 17 00:00:00 2001 From: Owen Voke Date: Wed, 16 Nov 2022 12:28:36 +0000 Subject: [PATCH] fix: resolve typo resulting in deprecation notice --- 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 fa60c14df..5e7ab3f0d 100644 --- a/src/Commands/Concerns/InteractsWithIO.php +++ b/src/Commands/Concerns/InteractsWithIO.php @@ -234,7 +234,7 @@ public function handleStream($stream, $verbosity = null) 'request' => $this->requestInfo($stream, $verbosity), 'throwable' => $this->throwableInfo($stream, $verbosity), 'shutdown' => $this->shutdownInfo($stream, $verbosity), - default => $this->info(json_encode($stream, $verbosity)) + default => $this->info(json_encode($stream), $verbosity) }; } }