Completed
Push — master ( ab33f0...698ef7 )
by PHPLicengine
02:18
created
lib/PHPLicengine/Service/Bsd.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 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/bsds';       
Please login to merge, or discard this patch.
lib/PHPLicengine/Service/App.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
  
31 31
       private $url;
32 32
       
33
-      public function __construct (ApiInterface $api)
33
+      public function __construct(ApiInterface $api)
34 34
       {
35 35
              $this->api = $api;
36 36
              $this->url = 'https://api-ssl.bitly.com/v4/apps';       
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
       */
43 43
       public function getOAuthApp(string $client_id) 
44 44
       {
45
-             return $this->api->get($this->url . '/'.$client_id);
45
+             return $this->api->get($this->url.'/'.$client_id);
46 46
       }
47 47
       
48 48
 }
Please login to merge, or discard this patch.