diff --git a/src/Connection.php b/src/Connection.php index 7c71735..aad8325 100644 --- a/src/Connection.php +++ b/src/Connection.php @@ -95,7 +95,7 @@ public function read(): Generator $outputFromSocket = socket_read($this->socket, $this->bufferSize); - if ($outputFromSocket === false || $outputFromSocket === ''){ + if ($outputFromSocket === false || $outputFromSocket === '') { break; } @@ -103,4 +103,3 @@ public function read(): Generator } } } -