Test Failed
Push — master ( 3f7e06...7d2261 )
by PHPLicengine
12:32 queued 05:05
created
lib/PHPLicengine/Service/User.php 1 patch
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -28,40 +28,40 @@
 block discarded – undo
28 28
 
29 29
 class User {
30 30
  
31
-      private $url;
32
-      private $api;      
31
+       private $url;
32
+       private $api;      
33 33
       
34
-      public function __construct (ApiInterface $api)
35
-      {
36
-             $this->api = $api;
37
-             $this->url = 'https://api-ssl.bitly.com/v4/user';       
38
-      }
34
+       public function __construct (ApiInterface $api)
35
+       {
36
+              $this->api = $api;
37
+              $this->url = 'https://api-ssl.bitly.com/v4/user';       
38
+       }
39 39
  
40
-      /*
40
+       /*
41 41
       Update a User
42 42
       https://dev.bitly.com/api-reference#updateUser
43 43
       */
44
-      public function updateUser(array $params) 
45
-      {
46
-             return $this->api->patch($this->url, $params);
47
-      }
44
+       public function updateUser(array $params) 
45
+       {
46
+              return $this->api->patch($this->url, $params);
47
+       }
48 48
       
49
-      /*
49
+       /*
50 50
       Retrieve a User
51 51
       https://dev.bitly.com/api-reference#getUser
52 52
       */
53
-      public function getUser() 
54
-      {
55
-             return $this->api->get($this->url);
56
-      }
53
+       public function getUser() 
54
+       {
55
+              return $this->api->get($this->url);
56
+       }
57 57
  
58
-      /*
58
+       /*
59 59
       Get Platform Limits
60 60
       https://dev.bitly.com/api-reference#getPlatformLimits
61 61
       */
62
-      public function getPlatformLimits(array $params) 
63
-      {
64
-             return $this->api->get($this->url."/platform_limits", $params);
65
-      }
62
+       public function getPlatformLimits(array $params) 
63
+       {
64
+              return $this->api->get($this->url."/platform_limits", $params);
65
+       }
66 66
       
67 67
 }
Please login to merge, or discard this patch.