Completed
Push — master ( a6b359...666314 )
by Nils
04:36
created
src/Rules/Http/DurationRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
     public function validate(Response $response)
26 26
     {
27 27
         if ($response->getDuration() > $this->maxDuration) {
28
-            throw new ValidationFailedException('The http request took ' . $response->getDuration() . ' milliseconds (limit was '.$this->maxDuration.'ms). ');
28
+            throw new ValidationFailedException('The http request took '.$response->getDuration().' milliseconds (limit was '.$this->maxDuration.'ms). ');
29 29
         }
30 30
     }
31 31
 }
Please login to merge, or discard this patch.