Skip to content

Commit

Permalink
Merge pull request #118 from HassanZahirnia/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze authored Sep 8, 2022
2 parents ef9db3c + 14e7115 commit a1f8448
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Checks/Checks/PingCheck.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,14 +76,14 @@ public function run(): Result

return Result::make()
->ok()
->shortSummary('reachable');
->shortSummary('Reachable');
}

protected function failedResult(): Result
{
return Result::make()
->failed()
->shortSummary('unreachable')
->shortSummary('Unreachable')
->notificationMessage($this->failureMessage ?? "Pinging {$this->getName()} failed.");
}
}

0 comments on commit a1f8448

Please sign in to comment.