Compare commits

...

1 commit
1.1.1 ... main

Author SHA1 Message Date
yggverse
1129cd1657 fix query format 2024-07-08 05:01:59 +03:00

View file

@ -113,7 +113,10 @@ class Client
sprintf( sprintf(
"%s%s\r\n", "%s%s\r\n",
$this->_path, $this->_path,
$this->_query $this->_query ? sprintf(
'?%s',
$this->_query
) : null
) )
); );