Completed
Push — master ( 1985cf...68b8f6 )
by Eric
03:54
created
src/Rest/Client.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
      */
158 158
     public function getSiteUrl($endpoint = '', array $query = array())
159 159
     {
160
-        if(count($query) != '0') {
160
+        if (count($query) != '0') {
161 161
             $endpoint .= '&'.http_build_query($query);
162 162
         }
163 163
         
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
         //being sent versus what's expected to be sent. So we remove them and prepare for 
221 221
         //query usage
222 222
         $query = array();
223
-        if(strtolower($method)== 'get') {
223
+        if (strtolower($method) == 'get') {
224 224
             $query = $payload;
225 225
             $payload = array();
226 226
         }
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
         $request = new Request($method, $endpoint, $payload);
230 230
         $headers = $request->sign($token, 'm62_auth_');
231 231
         
232
-        if(strtolower($method)== 'get') {
232
+        if (strtolower($method) == 'get') {
233 233
             $payload = array();
234 234
         }
235 235
         
@@ -261,7 +261,7 @@  discard block
 block discarded – undo
261 261
     {
262 262
         $ch = $this->getCurlHandle();
263 263
         $parsed_headers = array();
264
-        foreach($headers AS $key => $value) {
264
+        foreach ($headers AS $key => $value) {
265 265
             $parsed_headers[] = $key.': '.$value;
266 266
         }
267 267
         
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
                 $json_payload = json_encode($payload);
281 281
                 
282 282
                 $options[CURLOPT_POSTFIELDS] = $json_payload;
283
-                $parsed_headers[] = 'Content-Length: ' . strlen($json_payload);
283
+                $parsed_headers[] = 'Content-Length: '.strlen($json_payload);
284 284
                 $parsed_headers[] = 'Content-Type: application/json';
285 285
                 $options[CURLOPT_HTTPHEADER] = $parsed_headers;
286 286
             } 
@@ -297,7 +297,7 @@  discard block
 block discarded – undo
297 297
         $this->debug_info = curl_getinfo($ch);
298 298
 
299 299
         if ($response_raw === false) {
300
-            throw new \RuntimeException('Request Error: ' . curl_error($ch));
300
+            throw new \RuntimeException('Request Error: '.curl_error($ch));
301 301
         }
302 302
         
303 303
         curl_getinfo($ch, CURLINFO_HTTP_CODE);
@@ -306,7 +306,7 @@  discard block
 block discarded – undo
306 306
             return Client\ApiProblem::fromJson($response_raw); 
307 307
         }
308 308
         
309
-        if(!empty($this->debug_info['http_code']) && $this->debug_info['http_code'] == '404') {
309
+        if (!empty($this->debug_info['http_code']) && $this->debug_info['http_code'] == '404') {
310 310
             $response_raw = array('status' => $this->debug_info['http_code'], 'title' => 'Not Found');
311 311
             return Client\ApiProblem::fromJson(json_encode($response_raw));
312 312
         }
Please login to merge, or discard this patch.