@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | foreach ($resources as $url) { |
29 | 29 | [$healthy, $message] = $this->checkCertificate($url); |
30 | 30 | |
31 | - if (! $healthy) { |
|
31 | + if (!$healthy) { |
|
32 | 32 | return $this->makeResult(false, $message); |
33 | 33 | } |
34 | 34 | } |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | |
104 | 104 | 'php' => $this->checkCertificateWithPhp($host), |
105 | 105 | ]) |
106 | - ->filter(function ($result) { |
|
106 | + ->filter(function($result) { |
|
107 | 107 | return $result[0] === false; |
108 | 108 | }) |
109 | 109 | ->first(); |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | |
122 | 122 | $result = collect($output) |
123 | 123 | ->filter( |
124 | - function ($line) { |
|
124 | + function($line) { |
|
125 | 125 | return Str::contains( |
126 | 126 | $line, |
127 | 127 | $this->target->resource->verifyString |