Test Failed
Push — master ( 015f2b...92e6f8 )
by Antonio Carlos
02:56
created
src/Checkers/Http.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
         } catch (\Exception $exception) {
92 92
             $success = false;
93 93
 
94
-            $message = "Target: {$url} - ERROR: " . $exception->getMessage();
94
+            $message = "Target: {$url} - ERROR: ".$exception->getMessage();
95 95
 
96 96
             report($exception);
97 97
         }
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
     {
183 183
         return preg_replace(
184 184
             '|^((https?:)?\/\/)?(.*)|',
185
-            'http' . ($secure ? 's' : '') . '://\\3',
185
+            'http'.($secure ? 's' : '').'://\\3',
186 186
             $url
187 187
         );
188 188
     }
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
      */
195 195
     private function onStatsCallback()
196 196
     {
197
-        return function (TransferStats $stats) {
197
+        return function(TransferStats $stats) {
198 198
             $this->totalTime = $stats->getTransferTime();
199 199
         };
200 200
     }
Please login to merge, or discard this patch.