@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | */ |
140 | 140 | public function setTimeout($timeout) |
141 | 141 | { |
142 | - $this->_timeout = (int)$timeout; |
|
142 | + $this->_timeout = (int) $timeout; |
|
143 | 143 | |
144 | 144 | return $this; |
145 | 145 | } |
@@ -306,11 +306,11 @@ discard block |
||
306 | 306 | $host = $this->_host; |
307 | 307 | switch (strtolower($this->_crypto)) { |
308 | 308 | case 'ssl': |
309 | - $host = 'ssl://' . $host; |
|
309 | + $host = 'ssl://'.$host; |
|
310 | 310 | break; |
311 | 311 | |
312 | 312 | case 'tls': |
313 | - $host = 'tls://' . $host; |
|
313 | + $host = 'tls://'.$host; |
|
314 | 314 | break; |
315 | 315 | } |
316 | 316 |