From 98f75895813b40e2ae5e579631403f9704437653 Mon Sep 17 00:00:00 2001 From: freekmurze Date: Tue, 25 Apr 2023 13:50:52 +0000 Subject: [PATCH] Fix styling --- src/Commands/WatchHorizonCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/WatchHorizonCommand.php b/src/Commands/WatchHorizonCommand.php index 02e8174..8d9d125 100644 --- a/src/Commands/WatchHorizonCommand.php +++ b/src/Commands/WatchHorizonCommand.php @@ -31,7 +31,7 @@ protected function startHorizon(): bool { $this->horizonProcess = Process::fromShellCommandline(config('horizon-watcher.command')); - $this->horizonProcess->setTty(! $this->option('without-tty') )->setTimeout(null); + $this->horizonProcess->setTty(! $this->option('without-tty'))->setTimeout(null); $this->horizonProcess->start(fn ($type, $output) => $this->info($output));