diff --git a/src/Connections/SocketConnection.php b/src/Connections/SocketConnection.php index fd8fc59..751a021 100644 --- a/src/Connections/SocketConnection.php +++ b/src/Connections/SocketConnection.php @@ -56,6 +56,8 @@ public function open(): bool throw new SocketException("$errorCode: $errorMessage"); } + stream_set_timeout($this->socket, 0); + return true; }