Passed
Branch master (74ed3c)
by Sheldon
06:24 queued 02:45
created
src/Util/Request.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -304,7 +304,7 @@
 block discarded – undo
304 304
             curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $type);
305 305
         }
306 306
         // Grab query string.
307
-        $query = property_exists($this, 'query') && $this->query ? '?' . $this->param($this->query) : '';
307
+        $query = property_exists($this, 'query') && $this->query ? '?'.$this->param($this->query) : '';
308 308
         curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
309 309
         // Set additional headers.
310 310
         $headers = [];
Please login to merge, or discard this patch.