diff --git a/src/Client/Request.php b/src/Client/Request.php index 183ce56..560a1fd 100644 --- a/src/Client/Request.php +++ b/src/Client/Request.php @@ -17,10 +17,8 @@ class Request [ 'ssl' => [ - 'allow_self_signed' => true, - 'disable_compression' => true, - 'verify_peer_name' => false, - 'verify_peer' => false + 'verify_peer' => false, + 'verify_peer_name' => false ] ]; @@ -186,10 +184,7 @@ class Request $this->_host, $this->_port, $this->_path, - $this->_query ? sprintf( - '?%s', - $this->_query - ) : null + $this->_query ) );