@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | $this->handle = $clientHandle; |
| 36 | 36 | $this->conntected = false; |
| 37 | 37 | |
| 38 | - if (! is_resource($clientHandle)) { |
|
| 38 | + if (!is_resource($clientHandle)) { |
|
| 39 | 39 | parent::__construct($endpoint); |
| 40 | 40 | } |
| 41 | 41 | } |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | */ |
| 58 | 58 | public function disconnect() |
| 59 | 59 | { |
| 60 | - if (! $this->conntected) { |
|
| 60 | + if (!$this->conntected) { |
|
| 61 | 61 | throw new SocketException("Socket is not connected"); |
| 62 | 62 | } |
| 63 | 63 | |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | */ |
| 92 | 92 | public function isWriteable(): bool |
| 93 | 93 | { |
| 94 | - if (! $this->isConnected()) { |
|
| 94 | + if (!$this->isConnected()) { |
|
| 95 | 95 | return false; |
| 96 | 96 | } |
| 97 | 97 | |