Passed
Branch master (291649)
by Igor
02:29
created
Category
src/Transport/TcpTransport.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
      */
95 95
     private function createSocketClient()
96 96
     {
97
-        $client = stream_socket_client($this->url, $errno, $errstr, ((float)$this->timeoutMs) / 1000);
97
+        $client = stream_socket_client($this->url, $errno, $errstr, ((float) $this->timeoutMs) / 1000);
98 98
 
99 99
         if (!is_resource($client)) {
100 100
             throw new ConnectionFailedException($this->url, sprintf('%d: %s', $errno, $errstr));
Please login to merge, or discard this patch.