Test Failed
Push — master ( c2b828...99eb85 )
by Antonio Carlos
05:09
created
src/Checkers/Http.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.