Completed
Push — master ( 6c8381...e53e0e )
by Pascal
02:44
created
src/Client.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,10 +84,10 @@
 block discarded – undo
84 84
     public function get($endpoint, $params = [])
85 85
     {
86 86
         // build url
87
-        $url = $this->domain . '/' . $endpoint;
87
+        $url = $this->domain.'/'.$endpoint;
88 88
 
89 89
         if (!empty($params)) {
90
-            $url = $url . '?' . http_build_query($params);
90
+            $url = $url.'?'.http_build_query($params);
91 91
         }
92 92
 
93 93
         $request = new Request($url);
Please login to merge, or discard this patch.