Passed
Push — master ( a4e948...70c4f4 )
by Camilo
08:39
created
src/Client.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -231,7 +231,7 @@
 block discarded – undo
231 231
     private function setSocketTimeout(): self
232 232
     {
233 233
         $timeCalculation = $this->connectionParameters->getKeepAlivePeriod() * 1.5;
234
-        $seconds = (int) floor($timeCalculation);
234
+        $seconds = (int)floor($timeCalculation);
235 235
         stream_set_timeout($this->socket, $seconds, (int)($timeCalculation - $seconds) * 1000);
236 236
 
237 237
         return $this;
Please login to merge, or discard this patch.