Passed
Push — main ( 605794...2d67bc )
by Dylan
01:59
created
src/services/Curl.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
         }
189 189
 
190 190
         if ($this->_enable_cache && $this->getMethod() === 'GET') {
191
-            $cache_key = urlencode($request_uri) . implode(',', $send_headers);
191
+            $cache_key = urlencode($request_uri).implode(',', $send_headers);
192 192
             if (array_key_exists($cache_key, self::$_cache)) {
193 193
                 return self::$_cache[$cache_key];
194 194
             }
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
         curl_setopt($ch, CURLOPT_AUTOREFERER, true);
209 209
 
210 210
         if (!empty($send_headers))  curl_setopt($ch, CURLOPT_HTTPHEADER, $send_headers);
211
-        if (!is_null($post_data))   {
211
+        if (!is_null($post_data)) {
212 212
             curl_setopt($ch, CURLOPT_POST, 1);
213 213
             curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
214 214
         }
@@ -245,15 +245,15 @@  discard block
 block discarded – undo
245 245
     {
246 246
         if (!self::is_absolute_url($url)) {
247 247
             $isRelative = true;
248
-            $url = 'http://dummy.com/' . ltrim($url, '/');
249
-        } else {
248
+            $url = 'http://dummy.com/'.ltrim($url, '/');
249
+        }else {
250 250
             $isRelative = false;
251 251
         }
252 252
 
253 253
         // try to parse uri
254 254
         $parts = parse_url($url);
255 255
         if (!$parts) {
256
-            throw new InvalidArgumentException("Can't parse URL: " . $url);
256
+            throw new InvalidArgumentException("Can't parse URL: ".$url);
257 257
         }
258 258
 
259 259
         // Parse params and add new variable
@@ -269,21 +269,21 @@  discard block
 block discarded – undo
269 269
 
270 270
         if ($user != '') {
271 271
             // format in either user:[email protected] or [email protected]
272
-            $user .= (isset($parts['pass']) && $parts['pass'] != '') ? ':' . $parts['pass'] . '@' : '@';
272
+            $user .= (isset($parts['pass']) && $parts['pass'] != '') ? ':'.$parts['pass'].'@' : '@';
273 273
         }
274 274
 
275 275
         $host = (isset($parts['host'])) ? $parts['host'] : '';
276
-        $port = (isset($parts['port']) && $parts['port'] != '') ? ':' . $parts['port'] : '';
276
+        $port = (isset($parts['port']) && $parts['port'] != '') ? ':'.$parts['port'] : '';
277 277
         $path = (isset($parts['path']) && $parts['path'] != '') ? $parts['path'] : '';
278 278
 
279 279
         // handle URL params which are existing / new
280
-        $params = ($params) ? '?' . http_build_query($params, null, $separator) : '';
280
+        $params = ($params) ? '?'.http_build_query($params, null, $separator) : '';
281 281
 
282 282
         // keep fragments (anchors) intact.
283
-        $fragment = (isset($parts['fragment']) && $parts['fragment'] != '') ? '#' . $parts['fragment'] : '';
283
+        $fragment = (isset($parts['fragment']) && $parts['fragment'] != '') ? '#'.$parts['fragment'] : '';
284 284
 
285 285
         // Recompile URI segments
286
-        $newUri = $scheme . '://' . $user . $host . $port . $path . $params . $fragment;
286
+        $newUri = $scheme.'://'.$user.$host.$port.$path.$params.$fragment;
287 287
 
288 288
         if ($isRelative) {
289 289
             return str_replace('http://dummy.com/', '', $newUri);
@@ -300,10 +300,10 @@  discard block
 block discarded – undo
300 300
     {
301 301
         // Strip off the query and fragment parts of the URL before checking
302 302
         if (($queryPosition = strpos($url, '?')) !== false) {
303
-            $url = substr($url, 0, $queryPosition - 1);
303
+            $url = substr($url, 0, $queryPosition-1);
304 304
         }
305 305
         if (($hashPosition = strpos($url, '#')) !== false) {
306
-            $url = substr($url, 0, $hashPosition - 1);
306
+            $url = substr($url, 0, $hashPosition-1);
307 307
         }
308 308
         $colonPosition = strpos($url, ':');
309 309
         $slashPosition = strpos($url, '/');
Please login to merge, or discard this patch.