Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze authored and actions-user committed Nov 27, 2021
1 parent 8410c51 commit 96efe50
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Commands/RunHealthChecksCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ protected function sendNotification(Collection $results): self

protected function outputResult(Result $result, ?Exception $exception = null): void
{

$status = ucfirst((string)$result->status->value);

$okMessage = $status;
Expand Down Expand Up @@ -148,7 +147,7 @@ protected function determineCommandResult(Collection $results): int
return self::FAILURE;
}

$containsFailingCheck = $results->contains(function(Result $result) {
$containsFailingCheck = $results->contains(function (Result $result) {
return in_array($result->status, [
Status::crashed(),
Status::failed(),
Expand Down

0 comments on commit 96efe50

Please sign in to comment.