@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | $parameters |
49 | 49 | ); |
50 | 50 | |
51 | - if (! $healthy) { |
|
51 | + if (!$healthy) { |
|
52 | 52 | return $this->makeResult($healthy, $message); |
53 | 53 | } |
54 | 54 | } |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | */ |
196 | 196 | protected function onStatsCallback() |
197 | 197 | { |
198 | - return function (TransferStats $stats) { |
|
198 | + return function(TransferStats $stats) { |
|
199 | 199 | $this->totalTime = $stats->getTransferTime(); |
200 | 200 | }; |
201 | 201 | } |
@@ -217,7 +217,7 @@ discard block |
||
217 | 217 | throw new \Exception((string) $response->getBody()); |
218 | 218 | } |
219 | 219 | |
220 | - return ! $this->requestTimeout(); |
|
220 | + return !$this->requestTimeout(); |
|
221 | 221 | } |
222 | 222 | |
223 | 223 | /** |
@@ -257,7 +257,7 @@ discard block |
||
257 | 257 | */ |
258 | 258 | protected function getMethod($parameters) |
259 | 259 | { |
260 | - if (! isset($parameters['method'])) { |
|
260 | + if (!isset($parameters['method'])) { |
|
261 | 261 | return 'GET'; |
262 | 262 | } |
263 | 263 |