Test Failed
Pull Request — master (#28)
by John
02:54
created
lib/PHPLicengine/Service/Bitlink.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -167,17 +167,17 @@
 block discarded – undo
167 167
       Bulk update bitlinks
168 168
       https://dev.bitly.com/api-reference#updateBitlinksByGroup
169 169
       */
170
-      public function updateBitlinksByGroup(string $group_guid, array $params = array()) 
171
-      {
172
-             return $this->api->patch($this->url . '/groups/'.$group_guid.'/bitlinks', $params);
173
-      }
170
+       public function updateBitlinksByGroup(string $group_guid, array $params = array()) 
171
+       {
172
+              return $this->api->patch($this->url . '/groups/'.$group_guid.'/bitlinks', $params);
173
+       }
174 174
 
175
-      /*
175
+       /*
176 176
       Customize a Bitlink
177 177
       https://dev.bitly.com/api-reference#addCustomBitlink
178 178
       */
179
-      public function customizeBackHalf(string $custom_url, array $params)
180
-      {
181
-          return $this->api->patch($this->url . '/custom_bitlinks/' . $custom_url, $params);
182
-      }
179
+       public function customizeBackHalf(string $custom_url, array $params)
180
+       {
181
+              return $this->api->patch($this->url . '/custom_bitlinks/' . $custom_url, $params);
182
+       }
183 183
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
       */
170 170
       public function updateBitlinksByGroup(string $group_guid, array $params = array()) 
171 171
       {
172
-             return $this->api->patch($this->url . '/groups/'.$group_guid.'/bitlinks', $params);
172
+             return $this->api->patch($this->url.'/groups/'.$group_guid.'/bitlinks', $params);
173 173
       }
174 174
 
175 175
       /*
@@ -178,6 +178,6 @@  discard block
 block discarded – undo
178 178
       */
179 179
       public function customizeBackHalf(string $custom_url, array $params)
180 180
       {
181
-          return $this->api->patch($this->url . '/custom_bitlinks/' . $custom_url, $params);
181
+          return $this->api->patch($this->url.'/custom_bitlinks/'.$custom_url, $params);
182 182
       }
183 183
 }
Please login to merge, or discard this patch.
lib/PHPLicengine/Api/Api.php 1 patch
Indentation   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -45,18 +45,18 @@  discard block
 block discarded – undo
45 45
               { 
46 46
                      if (!function_exists('curl_init')) 
47 47
                      { 
48
-                         throw new CurlException("cURL is not available. This API wrapper cannot be used."); 
48
+                            throw new CurlException("cURL is not available. This API wrapper cannot be used."); 
49 49
                      } 
50 50
                   
51 51
                      if (isset($api_key))
52 52
                      {
53
-                         $this->setApiKey($api_key);
53
+                            $this->setApiKey($api_key);
54 54
                      } 
55 55
                   
56 56
                      if ($basic === true) 
57 57
                      {
58
-                         $this->_api_key_var = 'Authorization: Basic ';
59
-                         $this->json = false;
58
+                            $this->_api_key_var = 'Authorization: Basic ';
59
+                            $this->json = false;
60 60
                      }
61 61
               }
62 62
 
@@ -117,31 +117,31 @@  discard block
 block discarded – undo
117 117
                      curl_setopt(/** @scrutinizer ignore-type */ $ch, CURLOPT_HEADER, true);
118 118
                      curl_setopt(/** @scrutinizer ignore-type */ $ch, CURLINFO_HEADER_OUT, true);
119 119
                      if ($this->curlProxy) {  
120
-                         curl_setopt(/** @scrutinizer ignore-type */ $ch, CURLOPT_PROXY, $this->curlProxy);  
120
+                            curl_setopt(/** @scrutinizer ignore-type */ $ch, CURLOPT_PROXY, $this->curlProxy);  
121 121
                      }  
122 122
                      if ($this->_curl_callback) { 
123
-                         call_user_func($this->_curl_callback, $ch, $params, $headers, $method); 
123
+                            call_user_func($this->_curl_callback, $ch, $params, $headers, $method); 
124 124
                      } 
125 125
                      switch (strtoupper($method)) { 
126 126
                             case 'PATCH':
127 127
                                           curl_setopt(/** @scrutinizer ignore-type */ $ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
128 128
                                           
129 129
                                           if (!empty($params)) {
130
-                                              curl_setopt(/** @scrutinizer ignore-type */ $ch, CURLOPT_POSTFIELDS, json_encode($params));
130
+                                                 curl_setopt(/** @scrutinizer ignore-type */ $ch, CURLOPT_POSTFIELDS, json_encode($params));
131 131
                                           } 
132 132
                             break;
133 133
                             case 'PUT':
134 134
                                           curl_setopt(/** @scrutinizer ignore-type */ $ch, CURLOPT_PUT, true);
135 135
                                           
136 136
                                           if (!empty($params)) {
137
-                                              curl_setopt(/** @scrutinizer ignore-type */ $ch, CURLOPT_POSTFIELDS, json_encode($params));
137
+                                                 curl_setopt(/** @scrutinizer ignore-type */ $ch, CURLOPT_POSTFIELDS, json_encode($params));
138 138
                                           } 
139 139
                             break;
140 140
                             case 'DELETE':
141 141
                                           curl_setopt(/** @scrutinizer ignore-type */ $ch, CURLOPT_DELETE, true);
142 142
                                           
143 143
                                           if (!empty($params)) {
144
-                                              curl_setopt(/** @scrutinizer ignore-type */ $ch, CURLOPT_POSTFIELDS, json_encode($params));
144
+                                                 curl_setopt(/** @scrutinizer ignore-type */ $ch, CURLOPT_POSTFIELDS, json_encode($params));
145 145
                                           } 
146 146
                             break;
147 147
                             case 'POST':
@@ -163,10 +163,10 @@  discard block
 block discarded – undo
163 163
                      $this->response = curl_exec(/** @scrutinizer ignore-type */ $ch);
164 164
                 
165 165
                      if (curl_errno(/** @scrutinizer ignore-type */ $ch)) {
166
-                         $this->curlErrno = curl_errno(/** @scrutinizer ignore-type */ $ch);
167
-                         $this->curlError = curl_error(/** @scrutinizer ignore-type */ $ch);
168
-                         curl_close(/** @scrutinizer ignore-type */ $ch);
169
-                         return;
166
+                            $this->curlErrno = curl_errno(/** @scrutinizer ignore-type */ $ch);
167
+                            $this->curlError = curl_error(/** @scrutinizer ignore-type */ $ch);
168
+                            curl_close(/** @scrutinizer ignore-type */ $ch);
169
+                            return;
170 170
                      }
171 171
                 
172 172
                      $this->curlInfo = curl_getinfo(/** @scrutinizer ignore-type */ $ch);
@@ -176,14 +176,14 @@  discard block
 block discarded – undo
176 176
               
177 177
               private function _createHeaders($headers = null)
178 178
               {
179
-                      $headers[] = $this->_api_key_var.$this->_api_key;
180
-                      if ($this->json === true) {
181
-                          $headers[] = 'Content-Type: application/json';
182
-                      }
183
-                      if ($this->accept === true) {
184
-                          $headers[] = 'Accept: application/json';
185
-                      }
186
-                      return $headers;
179
+                            $headers[] = $this->_api_key_var.$this->_api_key;
180
+                            if ($this->json === true) {
181
+                            $headers[] = 'Content-Type: application/json';
182
+                            }
183
+                            if ($this->accept === true) {
184
+                            $headers[] = 'Accept: application/json';
185
+                            }
186
+                            return $headers;
187 187
               }
188 188
   
189 189
               private function _parseHeaders($raw_headers) 
@@ -218,12 +218,12 @@  discard block
 block discarded – undo
218 218
 
219 219
               private function _getHeaders()
220 220
               {
221
-                      return $this->_parseHeaders(substr($this->response, 0, $this->curlInfo['header_size']));
221
+                            return $this->_parseHeaders(substr($this->response, 0, $this->curlInfo['header_size']));
222 222
               }
223 223
 
224 224
               private function _getBody()
225 225
               {
226
-                      return substr($this->response, $this->curlInfo['header_size']);
226
+                            return substr($this->response, $this->curlInfo['header_size']);
227 227
               }
228 228
 
229 229
               public function getResponse()
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
               public function get($url, $params = null, $headers = null)
240 240
               {
241 241
                      if (!empty($params)) {
242
-                         $url .= '?'.http_build_query($params);
242
+                            $url .= '?'.http_build_query($params);
243 243
                      }
244 244
                      return $this->_call($url, $params, $headers, $method = "GET");      
245 245
               }
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
               public function post($url, $params = null, $headers = null)
248 248
               {
249 249
                      if ($this->json === true) {
250
-                         $params = json_encode($params);
250
+                            $params = json_encode($params);
251 251
                      }                                       
252 252
                      return $this->_call($url, $params, $headers, $method = "POST");      
253 253
               }
Please login to merge, or discard this patch.