Test Failed
Push — master ( eab9a2...4de165 )
by PHPLicengine
02:31
created
lib/PHPLicengine/Service/Bitlink.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -178,10 +178,10 @@  discard block
 block discarded – undo
178 178
       */
179 179
        public function deleteBitlink(string $bitlink) 
180 180
        {
181
-               return $this->api->delete($this->url.'/bitlinks/'.$bitlink);
181
+                     return $this->api->delete($this->url.'/bitlinks/'.$bitlink);
182 182
        }
183 183
       
184
-      /*
184
+       /*
185 185
       Create a QR Code
186 186
       https://dev.bitly.com/api-reference/#createBitlinkQRCode
187 187
       */
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
               return $this->api->post($this->url.'/bitlinks/'.$bitlink.'/qr', $params);
191 191
        }
192 192
  
193
-      /*
193
+       /*
194 194
       Update a QR Code
195 195
       https://dev.bitly.com/api-reference/#updateBitlinkQRCode
196 196
       */
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -169,7 +169,7 @@
 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
        /*
Please login to merge, or discard this patch.