Skip to content

Commit

Permalink
Merge pull request #250 from JaZo/JaZo-patch-1
Browse files Browse the repository at this point in the history
Remove typo in crashed message
  • Loading branch information
freekmurze authored Dec 9, 2024
2 parents fc403f2 + 12ffce4 commit b928ebe
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 b928ebe

Please sign in to comment.