Skip to content

Commit

Permalink
fix: remove typo in crashed message
Browse files Browse the repository at this point in the history
  • Loading branch information
JaZo authored Nov 26, 2024
1 parent f5d182d commit 12ffce4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/RunHealthChecksCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
}
Expand Down

0 comments on commit 12ffce4

Please sign in to comment.