Skip to content

Commit

Permalink
Update CombinedCheck.php
Browse files Browse the repository at this point in the history
  • Loading branch information
roblesterjr04 committed Jun 23, 2023
1 parent faebb0a commit 6597a5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Checks/Checks/CombinedCheck.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function run(): Result
$summary[] = $this->checkIcons[(string)$checkResult->status] . $checkResult->getShortSummary();
}

$result->shortSummary(implode("\n", $summary));
$result->shortSummary(implode("<br />", $summary));

if ($notOk == $total) return $result->failed();
if ($notOk > 0) return $result->warning();
Expand Down

0 comments on commit 6597a5f

Please sign in to comment.