From a5a3cd730cee6fc2cf8afd94e8a5afb1efc84800 Mon Sep 17 00:00:00 2001 From: yggverse Date: Sun, 21 Apr 2024 15:32:08 +0300 Subject: [PATCH] fix request format --- src/Client/Request.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Client/Request.php b/src/Client/Request.php index 3522d37..aee0808 100644 --- a/src/Client/Request.php +++ b/src/Client/Request.php @@ -171,9 +171,7 @@ class Request fwrite( $connection, sprintf( - "nex://%s:%d%s%s\r\n", - $this->_host, - $this->_port, + "%s%s\r\n", $this->_path, $this->_query )