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 Dec 6, 2021
1 parent 891e93c commit eead552
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/HealthServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ public function packageBooted(): void

protected function registerOhDearEndpoint(): self
{
if (!config('health.oh_dear_endpoint.enabled')) {
if (! config('health.oh_dear_endpoint.enabled')) {
return $this;
}

if (!config('health.oh_dear_endpoint.secret')) {
if (! config('health.oh_dear_endpoint.secret')) {
return $this;
}

if (!config('health.oh_dear_endpoint.url')) {
if (! config('health.oh_dear_endpoint.url')) {
return $this;
}

Expand Down

0 comments on commit eead552

Please sign in to comment.