diff --git a/src/Commands/RunHealthChecksCommand.php b/src/Commands/RunHealthChecksCommand.php index c6aa8e79..a7d20f92 100644 --- a/src/Commands/RunHealthChecksCommand.php +++ b/src/Commands/RunHealthChecksCommand.php @@ -132,7 +132,7 @@ protected function outputResult(Result $result, ?Exception $exception = null): v Status::ok() => $this->info($okMessage), Status::warning() => $this->comment("{$status}: {$result->getNotificationMessage()}"), Status::failed() => $this->error("{$status}: {$result->getNotificationMessage()}"), - Status::crashed() => $this->error("{$status}}: `{$exception?->getMessage()}`"), + Status::crashed() => $this->error("{$status}: `{$exception?->getMessage()}`"), default => null, }; }