Test Failed
Push — master ( 033694...0d0bd0 )
by PHPLicengine
04:03 queued 01:03
created
lib/PHPLicengine/Service/Organization.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
       private $url;
32 32
       private $api;      
33 33
       
34
-      public function __construct (ApiInterface $api)
34
+      public function __construct(ApiInterface $api)
35 35
       {
36 36
              $this->api = $api;
37 37
              $this->url = 'https://api-ssl.bitly.com/v4/organizations';       
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
       */
53 53
       public function getOrganizationShortenCounts(string $organization_guid, array $params = array()) 
54 54
       {
55
-             return $this->api->get($this->url . '/'.$organization_guid.'/shorten_counts', $params);
55
+             return $this->api->get($this->url.'/'.$organization_guid.'/shorten_counts', $params);
56 56
       }
57 57
       
58 58
       /*
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
       */
62 62
       public function getOrganization(string $organization_guid) 
63 63
       {
64
-             return $this->api->get($this->url . '/'.$organization_guid);
64
+             return $this->api->get($this->url.'/'.$organization_guid);
65 65
       }      
66 66
  
67 67
       /*
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
       */
71 71
       public function getPlanLimits(string $organization_guid) 
72 72
       {
73
-             return $this->api->get($this->url . '/'.$organization_guid."/plan_limits");
73
+             return $this->api->get($this->url.'/'.$organization_guid."/plan_limits");
74 74
       }
75 75
  
76 76
 }
Please login to merge, or discard this patch.