@@ -38,9 +38,15 @@ discard block |
||
38 | 38 | */ |
39 | 39 | public function __construct(string $url = null, array $data = [], array $headers = []) |
40 | 40 | { |
41 | - if (!is_null($url)) $this->setURL($url); |
|
42 | - foreach ($data as $name => $value) $this->addDataParam($name, $value); |
|
43 | - foreach ($headers as $name => $value) $this->addHeader($name, $value); |
|
41 | + if (!is_null($url)) { |
|
42 | + $this->setURL($url); |
|
43 | + } |
|
44 | + foreach ($data as $name => $value) { |
|
45 | + $this->addDataParam($name, $value); |
|
46 | + } |
|
47 | + foreach ($headers as $name => $value) { |
|
48 | + $this->addHeader($name, $value); |
|
49 | + } |
|
44 | 50 | } |
45 | 51 | |
46 | 52 | /** |
@@ -97,7 +103,9 @@ discard block |
||
97 | 103 | |
98 | 104 | public function removeDataParam(string $name): Curl |
99 | 105 | { |
100 | - if (array_key_exists($name, $this->_data)) unset($this->_data[$name]); |
|
106 | + if (array_key_exists($name, $this->_data)) { |
|
107 | + unset($this->_data[$name]); |
|
108 | + } |
|
101 | 109 | return $this; |
102 | 110 | } |
103 | 111 | |
@@ -126,7 +134,9 @@ discard block |
||
126 | 134 | */ |
127 | 135 | public function removeHeader(string $name): Curl |
128 | 136 | { |
129 | - if (array_key_exists($name, $this->_headers)) unset($this->_headers[$name]); |
|
137 | + if (array_key_exists($name, $this->_headers)) { |
|
138 | + unset($this->_headers[$name]); |
|
139 | + } |
|
130 | 140 | return $this; |
131 | 141 | } |
132 | 142 | |
@@ -170,13 +180,17 @@ discard block |
||
170 | 180 | $request_uri = $this->getURL(); |
171 | 181 | |
172 | 182 | // Headers |
173 | - foreach ($this->getHeaders() as $k => $v) $send_headers[] = "{$k}: {$v}"; |
|
183 | + foreach ($this->getHeaders() as $k => $v) { |
|
184 | + $send_headers[] = "{$k}: {$v}"; |
|
185 | + } |
|
174 | 186 | |
175 | 187 | // Request Data |
176 | 188 | switch ($this->getMethod()) { |
177 | 189 | case 'GET': |
178 | 190 | case 'DELETE': |
179 | - foreach ($this->getDataParams() as $name => $value) $request_uri = $this->setGetVar($name, $value, $request_uri); |
|
191 | + foreach ($this->getDataParams() as $name => $value) { |
|
192 | + $request_uri = $this->setGetVar($name, $value, $request_uri); |
|
193 | + } |
|
180 | 194 | break; |
181 | 195 | |
182 | 196 | case 'POST': |
@@ -207,7 +221,9 @@ discard block |
||
207 | 221 | curl_setopt($ch, CURLINFO_HEADER_OUT, true); |
208 | 222 | curl_setopt($ch, CURLOPT_AUTOREFERER, true); |
209 | 223 | |
210 | - if (!empty($send_headers)) curl_setopt($ch, CURLOPT_HTTPHEADER, $send_headers); |
|
224 | + if (!empty($send_headers)) { |
|
225 | + curl_setopt($ch, CURLOPT_HTTPHEADER, $send_headers); |
|
226 | + } |
|
211 | 227 | if (!is_null($post_data)) { |
212 | 228 | curl_setopt($ch, CURLOPT_POST, 1); |
213 | 229 | curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data); |
@@ -217,7 +233,9 @@ discard block |
||
217 | 233 | $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); |
218 | 234 | |
219 | 235 | $response = new CurlResponse($http_code, $result); |
220 | - if ($this->_enable_cache && isset($cache_key)) self::$_cache[$cache_key] = $response; |
|
236 | + if ($this->_enable_cache && isset($cache_key)) { |
|
237 | + self::$_cache[$cache_key] = $response; |
|
238 | + } |
|
221 | 239 | |
222 | 240 | return $response; |
223 | 241 | } |