Completed
Push — d64 ( 0d0732...ecaede )
by Welling
10:22
created
src/BaseClientRemote.php 2 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -192,6 +192,10 @@
 block discarded – undo
192 192
         return new HTTPClient(array('base_url' => $this->baseEndpoint));
193 193
     }
194 194
 
195
+    /**
196
+     * @param string $method
197
+     * @param string $pathFormat
198
+     */
195 199
     public function performRequest($method, $pathFormat, $variables = [])
196 200
     {
197 201
         $request = $this->buildRequest($method, $pathFormat, $variables);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -237,7 +237,7 @@
 block discarded – undo
237 237
 
238 238
         if ($query) {
239 239
             $q = $request->getQuery();
240
-            foreach($query as $key => $value) {
240
+            foreach ($query as $key => $value) {
241 241
                 $q->set($key, $value);
242 242
             }
243 243
         }
Please login to merge, or discard this patch.