@@ -38,6 +38,12 @@ public function __construct(ContainerInterface $options){
38
38
throw new HTTPClientException ('invalid CA file ' );
39
39
}
40
40
41
+ }
42
+
43
+ /**
44
+ * @return void
45
+ */
46
+ protected function initCurl (){
41
47
$ this ->http = curl_init ();
42
48
43
49
curl_setopt_array ($ this ->http , [
@@ -86,14 +92,15 @@ protected function getResponse():HTTPResponseInterface{
86
92
parse_str ($ this ->parsedURL ['query ' ] ?? '' , $ parsedquery );
87
93
$ params = array_merge ($ parsedquery , $ this ->requestParams );
88
94
89
- $ url = $ this ->requestURL .(!empty ($ params ) ? '? ' .http_build_query ($ params ) : '' );
95
+ $ url = $ this ->requestURL .(!empty ($ params ) ? '? ' .$ this -> buildQuery ($ params ) : '' );
90
96
91
97
$ options += [
92
98
CURLOPT_URL => $ url ,
93
99
CURLOPT_HTTPHEADER => $ headers ,
94
100
CURLOPT_HEADERFUNCTION => [$ this , 'headerLine ' ],
95
101
];
96
102
103
+ $ this ->initCurl ();
97
104
curl_setopt_array ($ this ->http , $ options );
98
105
99
106
$ response = curl_exec ($ this ->http );
@@ -115,7 +122,7 @@ protected function getResponse():HTTPResponseInterface{
115
122
*
116
123
* @link http://php.net/manual/function.curl-setopt.php CURLOPT_HEADERFUNCTION
117
124
*/
118
- protected function headerLine (/** @noinspection PhpUnusedParameterInspection */ $ curl , $ header_line ){
125
+ protected function headerLine ($ curl , $ header_line ){
119
126
$ header = explode (': ' , $ header_line , 2 );
120
127
121
128
if (count ($ header ) === 2 ){
0 commit comments