Test Failed
Pull Request — master (#14)
by
unknown
01:57
created
lib/PHPLicengine/Cache/Cache.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -26,21 +26,21 @@  discard block
 block discarded – undo
26 26
 
27 27
 class Cache {
28 28
  
29
-      private $config;
29
+       private $config;
30 30
       
31
-      public function __construct (array $config)
32
-      {
33
-             $this->config = $config;       
34
-      }
31
+       public function __construct (array $config)
32
+       {
33
+              $this->config = $config;       
34
+       }
35 35
 
36
-      /*
36
+       /*
37 37
       This class uses Doctrine Cache. You can look at its doc to add more cache type.
38 38
       Whatever option you need to setup the cache type, must be passed as array to constructor.
39 39
       https://www.doctrine-project.org/projects/doctrine-cache/en/1.8/index.html
40 40
       */
41
-      public function getCache ()
42
-      {
43
-             switch ($this->config['type']) {
41
+       public function getCache ()
42
+       {
43
+              switch ($this->config['type']) {
44 44
                      case 'apc':
45 45
                           $cache = new \Doctrine\Common\Cache\ApcuCache();
46 46
                      break;
@@ -49,12 +49,12 @@  discard block
 block discarded – undo
49 49
                      break;
50 50
                      case 'sqlite3':
51 51
                           $db = new \SQLite3($this->config['sqlite3_db']);
52
-                          $cache = new \Doctrine\Common\Cache\SQLite3Cache($db, $this->config['sqlite3_table']);
52
+                            $cache = new \Doctrine\Common\Cache\SQLite3Cache($db, $this->config['sqlite3_table']);
53 53
                      break;
54
-                      default:
54
+                            default:
55 55
                           throw new CacheException('Invalid cache system');
56
-                      break;
57
-             } 
58
-             return $cache;
59
-      }
56
+                            break;
57
+              } 
58
+              return $cache;
59
+       }
60 60
 }
Please login to merge, or discard this patch.
lib/PHPLicengine/Service/Webhook.php 1 patch
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -28,58 +28,58 @@
 block discarded – undo
28 28
 
29 29
 class Webhook {
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/webhooks';       
38
-      }
34
+       public function __construct (ApiInterface $api)
35
+       {
36
+              $this->api = $api;
37
+              $this->url = 'https://api-ssl.bitly.com/v4/webhooks';       
38
+       }
39 39
  
40
-      /*
40
+       /*
41 41
       Create Webhook
42 42
       https://dev.bitly.com/api-reference#createWebhook
43 43
       */
44
-      public function createWebhook(array $params) 
45
-      {
46
-             return $this->api->post($this->url, $params);
47
-      }
44
+       public function createWebhook(array $params) 
45
+       {
46
+              return $this->api->post($this->url, $params);
47
+       }
48 48
 
49
-      /*
49
+       /*
50 50
       Get Webhooks
51 51
       https://dev.bitly.com/api-reference#getWebhooks
52 52
       */
53
-      public function getWebhooks(string $organization_guid) 
54
-      {
55
-             return $this->api->get("https://api-ssl.bitly.com/v4/organizations/".$organization_guid."/webhooks");
56
-      }
53
+       public function getWebhooks(string $organization_guid) 
54
+       {
55
+              return $this->api->get("https://api-ssl.bitly.com/v4/organizations/".$organization_guid."/webhooks");
56
+       }
57 57
       
58
-      /*
58
+       /*
59 59
       Retrieve Webhook
60 60
       https://dev.bitly.com/api-reference#getWebhook
61 61
       */
62
-      public function getWebhook(string $webhook_guid) 
63
-      {
64
-             return $this->api->get($this->url."/".$webhook_guid);
65
-      }      
62
+       public function getWebhook(string $webhook_guid) 
63
+       {
64
+              return $this->api->get($this->url."/".$webhook_guid);
65
+       }      
66 66
 
67
-      /*
67
+       /*
68 68
       Update Webhook
69 69
       https://dev.bitly.com/api-reference#updateWebhook
70 70
       */
71
-      public function updateWebhook(string $webhook_guid, array $params) 
72
-      {
73
-             return $this->api->patch($this->url."/".$webhook_guid, $params);
74
-      }      
71
+       public function updateWebhook(string $webhook_guid, array $params) 
72
+       {
73
+              return $this->api->patch($this->url."/".$webhook_guid, $params);
74
+       }      
75 75
 
76
-      /*
76
+       /*
77 77
       Delete Webhook
78 78
       https://dev.bitly.com/api-reference#deleteWebhook
79 79
       */
80
-      public function deleteWebhook(string $webhook_guid) 
81
-      {
82
-             return $this->api->delete($this->url."/".$webhook_guid);
83
-      }      
80
+       public function deleteWebhook(string $webhook_guid) 
81
+       {
82
+              return $this->api->delete($this->url."/".$webhook_guid);
83
+       }      
84 84
 
85 85
 }
Please login to merge, or discard this patch.
lib/PHPLicengine/Service/Campaign.php 1 patch
Indentation   +47 added lines, -47 removed lines patch added patch discarded remove patch
@@ -28,85 +28,85 @@
 block discarded – undo
28 28
 
29 29
 class Campaign {
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';       
38
-      }
34
+       public function __construct (ApiInterface $api)
35
+       {
36
+              $this->api = $api;
37
+              $this->url = 'https://api-ssl.bitly.com/v4';       
38
+       }
39 39
  
40
-      /*
40
+       /*
41 41
       Create Channel
42 42
       https://dev.bitly.com/api-reference#createChannel
43 43
       */
44
-      public function createChannel(array $params)
45
-      {
46
-             return $this->api->post($this->url . '/channels', $params);
47
-      }
44
+       public function createChannel(array $params)
45
+       {
46
+              return $this->api->post($this->url . '/channels', $params);
47
+       }
48 48
 
49
-      /*
49
+       /*
50 50
       Retrieve Channels
51 51
       https://dev.bitly.com/api-reference#getChannels
52 52
       */
53
-      public function getChannels(array $params)
54
-      {
55
-             return $this->api->get($this->url . '/channels', $params);
56
-      }
53
+       public function getChannels(array $params)
54
+       {
55
+              return $this->api->get($this->url . '/channels', $params);
56
+       }
57 57
       
58
-      /*
58
+       /*
59 59
       Create Campaign
60 60
       https://dev.bitly.com/api-reference#createCampaign
61 61
       */
62
-      public function createCampaign(array $params)
63
-      {
64
-             return $this->api->post($this->url . '/campaigns', $params);
65
-      }
62
+       public function createCampaign(array $params)
63
+       {
64
+              return $this->api->post($this->url . '/campaigns', $params);
65
+       }
66 66
       
67
-      /*
67
+       /*
68 68
       Retrieve Campaigns
69 69
       https://dev.bitly.com/api-reference#getCampaigns
70 70
       */
71
-      public function getCampaigns(array $params)
72
-      {
73
-             return $this->api->get($this->url . '/campaigns', $params);
74
-      }
71
+       public function getCampaigns(array $params)
72
+       {
73
+              return $this->api->get($this->url . '/campaigns', $params);
74
+       }
75 75
       
76
-      /*
76
+       /*
77 77
       Retrieve a Campaign
78 78
       https://dev.bitly.com/api-reference#getCampaign
79 79
       */
80
-      public function getCampaign(string $campaign_guid)
81
-      {
82
-             return $this->api->get($this->url . '/campaigns/'.$campaign_guid);
83
-      }
80
+       public function getCampaign(string $campaign_guid)
81
+       {
82
+              return $this->api->get($this->url . '/campaigns/'.$campaign_guid);
83
+       }
84 84
       
85
-      /*
85
+       /*
86 86
       Update Campaign
87 87
       https://dev.bitly.com/api-reference#updateCampaign
88 88
       */
89
-      public function updateCampaign(string $campaign_guid, array $params)
90
-      {
91
-             return $this->api->patch($this->url . '/campaigns/'.$campaign_guid, $params);
92
-      }
89
+       public function updateCampaign(string $campaign_guid, array $params)
90
+       {
91
+              return $this->api->patch($this->url . '/campaigns/'.$campaign_guid, $params);
92
+       }
93 93
       
94
-      /*
94
+       /*
95 95
       Get A Channel
96 96
       https://dev.bitly.com/api-reference#getChannel
97 97
       */
98
-      public function getChannel(string $channel_guid)
99
-      {
100
-             return $this->api->get($this->url . '/channels/'.$channel_guid);
101
-      }
98
+       public function getChannel(string $channel_guid)
99
+       {
100
+              return $this->api->get($this->url . '/channels/'.$channel_guid);
101
+       }
102 102
       
103
-      /*
103
+       /*
104 104
       Update A Channel
105 105
       https://dev.bitly.com/api-reference#updateChannel
106 106
       */
107
-      public function updateChannel(string $channel_guid, array $params)
108
-      {
109
-             return $this->api->patch($this->url . '/channels/'.$channel_guid, $params);
110
-      }      
107
+       public function updateChannel(string $channel_guid, array $params)
108
+       {
109
+              return $this->api->patch($this->url . '/channels/'.$channel_guid, $params);
110
+       }      
111 111
  
112 112
 }
Please login to merge, or discard this patch.
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 = array()) 
63
-      {
64
-             return $this->api->get($this->url."/platform_limits", $params);
65
-      }
62
+       public function getPlatformLimits(array $params = array()) 
63
+       {
64
+              return $this->api->get($this->url."/platform_limits", $params);
65
+       }
66 66
       
67 67
 }
Please login to merge, or discard this patch.
lib/PHPLicengine/Service/Organization.php 1 patch
Indentation   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -28,49 +28,49 @@
 block discarded – undo
28 28
 
29 29
 class Organization {
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/organizations';       
38
-      }
34
+       public function __construct (ApiInterface $api)
35
+       {
36
+              $this->api = $api;
37
+              $this->url = 'https://api-ssl.bitly.com/v4/organizations';       
38
+       }
39 39
  
40
-      /*
40
+       /*
41 41
       Retrieve Organizations
42 42
       https://dev.bitly.com/api-reference#getOrganizations
43 43
       */
44
-      public function getOrganizations() 
45
-      {
46
-             return $this->api->get($this->url);
47
-      }
44
+       public function getOrganizations() 
45
+       {
46
+              return $this->api->get($this->url);
47
+       }
48 48
       
49
-      /*
49
+       /*
50 50
       Retrieve Organization Shorten Counts
51 51
       https://dev.bitly.com/api-reference#getOrganizationShortenCounts
52 52
       */
53
-      public function getOrganizationShortenCounts(string $organization_guid) 
54
-      {
55
-             return $this->api->get($this->url . '/'.$organization_guid.'/shorten_counts');
56
-      }
53
+       public function getOrganizationShortenCounts(string $organization_guid) 
54
+       {
55
+              return $this->api->get($this->url . '/'.$organization_guid.'/shorten_counts');
56
+       }
57 57
       
58
-      /*
58
+       /*
59 59
       Retrieve an Organization
60 60
       https://dev.bitly.com/api-reference#getOrganization
61 61
       */
62
-      public function getOrganization(string $organization_guid) 
63
-      {
64
-             return $this->api->get($this->url . '/'.$organization_guid);
65
-      }      
62
+       public function getOrganization(string $organization_guid) 
63
+       {
64
+              return $this->api->get($this->url . '/'.$organization_guid);
65
+       }      
66 66
  
67
-      /*
67
+       /*
68 68
       Get Plan Limits
69 69
       https://dev.bitly.com/api-reference#getPlanLimits
70 70
       */
71
-      public function getPlanLimits(string $organization_guid) 
72
-      {
73
-             return $this->api->get($this->url . '/'.$organization_guid."/plan_limits");
74
-      }
71
+       public function getPlanLimits(string $organization_guid) 
72
+       {
73
+              return $this->api->get($this->url . '/'.$organization_guid."/plan_limits");
74
+       }
75 75
  
76 76
 }
Please login to merge, or discard this patch.
lib/PHPLicengine/Service/Auth.php 1 patch
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -28,37 +28,37 @@
 block discarded – undo
28 28
 
29 29
 class Auth {
30 30
  
31
-      private $url;
32
-      private $api;      
31
+       private $url;
32
+       private $api;      
33 33
 
34
-      public function __construct (ApiInterface $api, array $config)
35
-      {
36
-             $this->api = $api;
37
-             $this->url = 'https://api-ssl.bitly.com/oauth/access_token';    
38
-             $key = base64_encode($config['clientid_username'].":".$config['clientsecret_password']);
39
-             $api->setApiKey($key);
40
-      }
34
+       public function __construct (ApiInterface $api, array $config)
35
+       {
36
+              $this->api = $api;
37
+              $this->url = 'https://api-ssl.bitly.com/oauth/access_token';    
38
+              $key = base64_encode($config['clientid_username'].":".$config['clientsecret_password']);
39
+              $api->setApiKey($key);
40
+       }
41 41
  
42 42
  
43
-      /*
43
+       /*
44 44
       Exchanging a Username and Password for an Access Token
45 45
       https://dev.bitly.com/docs/getting-started/authentication
46 46
       */
47
-      public function exchangeToken(array $params)
48
-      {
49
-             $params['grant_type'] = 'password';
50
-             $result = $this->api->post($this->url, $params);
51
-             return json_decode($result->getResponse(), true)['access_token'];
52
-      }
47
+       public function exchangeToken(array $params)
48
+       {
49
+              $params['grant_type'] = 'password';
50
+              $result = $this->api->post($this->url, $params);
51
+              return json_decode($result->getResponse(), true)['access_token'];
52
+       }
53 53
 
54
-      /*
54
+       /*
55 55
       HTTP Basic Authentication Flow
56 56
       https://dev.bitly.com/docs/getting-started/authentication
57 57
       */
58
-      public function basicAuthFlow(array $params)
59
-      {
60
-             $result = $this->api->post($this->url, $params);
61
-             return $result->getResponse();
62
-      }
58
+       public function basicAuthFlow(array $params)
59
+       {
60
+              $result = $this->api->post($this->url, $params);
61
+              return $result->getResponse();
62
+       }
63 63
  
64 64
 }
Please login to merge, or discard this patch.
lib/PHPLicengine/Service/Bsd.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -28,22 +28,22 @@
 block discarded – undo
28 28
 
29 29
 class Bsd {
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/bsds';       
38
-      }
34
+       public function __construct (ApiInterface $api)
35
+       {
36
+              $this->api = $api;
37
+              $this->url = 'https://api-ssl.bitly.com/v4/bsds';       
38
+       }
39 39
  
40
-      /*
40
+       /*
41 41
       Get BSDs
42 42
       https://dev.bitly.com/api-reference#getBSDs
43 43
       */
44
-      public function getBSDs() 
45
-      {
46
-             return $this->api->get($this->url);
47
-      }
44
+       public function getBSDs() 
45
+       {
46
+              return $this->api->get($this->url);
47
+       }
48 48
       
49 49
 }
Please login to merge, or discard this patch.
lib/PHPLicengine/Service/Custom.php 1 patch
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -28,58 +28,58 @@
 block discarded – undo
28 28
 
29 29
 class Custom  {
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/custom_bitlinks';       
38
-      }
34
+       public function __construct (ApiInterface $api)
35
+       {
36
+              $this->api = $api;
37
+              $this->url = 'https://api-ssl.bitly.com/v4/custom_bitlinks';       
38
+       }
39 39
  
40
-      /*
40
+       /*
41 41
       Update Custom Bitlink
42 42
       https://dev.bitly.com/api-reference#updateCustomBitlink
43 43
       */
44
-      public function updateCustomBitlink(string $custom_bitlink, array $params)
45
-      {
46
-             return $this->api->patch($this->url . '/'.$custom_bitlink, $params);
47
-      }
44
+       public function updateCustomBitlink(string $custom_bitlink, array $params)
45
+       {
46
+              return $this->api->patch($this->url . '/'.$custom_bitlink, $params);
47
+       }
48 48
 
49
-      /*
49
+       /*
50 50
       Retrieve Custom Bitlink
51 51
       https://dev.bitly.com/api-reference#getCustomBitlink
52 52
       */
53
-      public function getCustomBitlink(string $custom_bitlink)
54
-      {
55
-             return $this->api->get($this->url . '/'.$custom_bitlink);
56
-      }
53
+       public function getCustomBitlink(string $custom_bitlink)
54
+       {
55
+              return $this->api->get($this->url . '/'.$custom_bitlink);
56
+       }
57 57
       
58
-      /*
58
+       /*
59 59
       Add Custom Bitlink
60 60
       https://dev.bitly.com/api-reference#addCustomBitlink
61 61
       */
62
-      public function addCustomBitlink(array $params)
63
-      {
64
-             return $this->api->post($this->url, $params);
65
-      }
62
+       public function addCustomBitlink(array $params)
63
+       {
64
+              return $this->api->post($this->url, $params);
65
+       }
66 66
       
67
-      /*
67
+       /*
68 68
       Get Metrics for a Custom Bitlink by destination
69 69
       https://dev.bitly.com/api-reference#getCustomBitlinkMetricsByDestination
70 70
       */
71
-      public function getCustomBitlinkMetricsByDestination(string $custom_bitlink)
72
-      {
73
-             return $this->api->get($this->url . '/'.$custom_bitlink.'/clicks_by_destination');
74
-      }
71
+       public function getCustomBitlinkMetricsByDestination(string $custom_bitlink)
72
+       {
73
+              return $this->api->get($this->url . '/'.$custom_bitlink.'/clicks_by_destination');
74
+       }
75 75
       
76
-      /*
76
+       /*
77 77
       Get Clicks for a Custom Bitlink's Entire History
78 78
       https://dev.bitly.com/api-reference#getClicksForCustomBitlink
79 79
       */
80
-      public function getClicksForCustomBitlink(string $custom_bitlink, array $params)
81
-      {
82
-             return $this->api->get($this->url . '/'.$custom_bitlink."/clicks", $params);
83
-      }
80
+       public function getClicksForCustomBitlink(string $custom_bitlink, array $params)
81
+       {
82
+              return $this->api->get($this->url . '/'.$custom_bitlink."/clicks", $params);
83
+       }
84 84
  
85 85
 }
Please login to merge, or discard this patch.
lib/PHPLicengine/Service/Bitlink.php 1 patch
Indentation   +77 added lines, -77 removed lines patch added patch discarded remove patch
@@ -28,139 +28,139 @@
 block discarded – undo
28 28
 
29 29
 class Bitlink {
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';       
38
-      }
34
+       public function __construct (ApiInterface $api)
35
+       {
36
+              $this->api = $api;
37
+              $this->url = 'https://api-ssl.bitly.com/v4';       
38
+       }
39 39
       
40
-      /*
40
+       /*
41 41
       Get Metrics for a Bitlink by referrers by domain
42 42
       https://dev.bitly.com/api-reference#getMetricsForBitlinkByReferrersByDomains
43 43
       */
44
-      public function getMetricsForBitlinkByReferrersByDomains(string $bitlink, array $params = array()) 
45
-      {
46
-             return $this->api->get($this->url . '/bitlinks/'.$bitlink.'/referrers_by_domains', $params);
47
-      }
44
+       public function getMetricsForBitlinkByReferrersByDomains(string $bitlink, array $params = array()) 
45
+       {
46
+              return $this->api->get($this->url . '/bitlinks/'.$bitlink.'/referrers_by_domains', $params);
47
+       }
48 48
       
49
-      /*
49
+       /*
50 50
       Get Metrics for a Bitlink by countries
51 51
       https://dev.bitly.com/api-reference#getMetricsForBitlinkByCountries
52 52
       */             
53
-      public function getMetricsForBitlinkByCountries(string $bitlink, array $params = array()) 
54
-      {
55
-             return $this->api->get($this->url . '/bitlinks/'.$bitlink.'/countries', $params);
56
-      }
53
+       public function getMetricsForBitlinkByCountries(string $bitlink, array $params = array()) 
54
+       {
55
+              return $this->api->get($this->url . '/bitlinks/'.$bitlink.'/countries', $params);
56
+       }
57 57
 
58
-      /*
58
+       /*
59 59
       Get Clicks for a Bitlink
60 60
       https://dev.bitly.com/api-reference#getClicksForBitlink
61 61
       */
62
-      public function getClicksForBitlink(string $bitlink, array $params = array()) 
63
-      {
64
-             return $this->api->get($this->url . '/bitlinks/'.$bitlink.'/clicks', $params);
65
-      }
62
+       public function getClicksForBitlink(string $bitlink, array $params = array()) 
63
+       {
64
+              return $this->api->get($this->url . '/bitlinks/'.$bitlink.'/clicks', $params);
65
+       }
66 66
 
67
-      /*
67
+       /*
68 68
       Expand a Bitlink
69 69
       https://dev.bitly.com/api-reference#expandBitlink
70 70
       */
71
-      public function expandBitlink(array $params) 
72
-      {
73
-             return $this->api->post($this->url . '/expand', $params);
74
-      }
71
+       public function expandBitlink(array $params) 
72
+       {
73
+              return $this->api->post($this->url . '/expand', $params);
74
+       }
75 75
       
76
-      /*
76
+       /*
77 77
       Get Metrics for a Bitlink by referrers
78 78
       https://dev.bitly.com/api-reference#getMetricsForBitlinkByReferrers
79 79
       */
80
-      public function getMetricsForBitlinkByReferrers(string $bitlink, array $params = array()) 
81
-      {
82
-             return $this->api->get($this->url . '/bitlinks/'.$bitlink.'/referrers', $params);
83
-      }
80
+       public function getMetricsForBitlinkByReferrers(string $bitlink, array $params = array()) 
81
+       {
82
+              return $this->api->get($this->url . '/bitlinks/'.$bitlink.'/referrers', $params);
83
+       }
84 84
       
85
-      /*
85
+       /*
86 86
       Create a Bitlink
87 87
       https://dev.bitly.com/api-reference#createFullBitlink
88 88
       */
89
-      public function createFullBitlink(array $params) 
90
-      {
91
-             return $this->api->post($this->url . '/bitlinks', $params);
92
-      }
89
+       public function createFullBitlink(array $params) 
90
+       {
91
+              return $this->api->post($this->url . '/bitlinks', $params);
92
+       }
93 93
       
94
-      /*
94
+       /*
95 95
       Update a Bitlink
96 96
       https://dev.bitly.com/api-reference#updateBitlink
97 97
       */
98
-      public function updateBitlink(string $bitlink, array $params) 
99
-      {
100
-             return $this->api->patch($this->url . '/bitlinks/'.$bitlink, $params);
101
-      }
98
+       public function updateBitlink(string $bitlink, array $params) 
99
+       {
100
+              return $this->api->patch($this->url . '/bitlinks/'.$bitlink, $params);
101
+       }
102 102
 
103
-      /*
103
+       /*
104 104
       Retrieve a Bitlink
105 105
       https://dev.bitly.com/api-reference#getBitlink
106 106
       */
107
-      public function getBitlink(string $bitlink) 
108
-      {
109
-             return $this->api->get($this->url . '/bitlinks/'.$bitlink);
110
-      }
107
+       public function getBitlink(string $bitlink) 
108
+       {
109
+              return $this->api->get($this->url . '/bitlinks/'.$bitlink);
110
+       }
111 111
 
112
-      /*
112
+       /*
113 113
       Get Clicks Summary for a Bitlink
114 114
       https://dev.bitly.com/api-reference#getClicksSummaryForBitlink
115 115
       */
116
-      public function getClicksSummaryForBitlink(string $bitlink, array $params = array()) 
117
-      {
118
-             return $this->api->get($this->url . '/bitlinks/'.$bitlink.'/clicks/summary', $params);
119
-      }
116
+       public function getClicksSummaryForBitlink(string $bitlink, array $params = array()) 
117
+       {
118
+              return $this->api->get($this->url . '/bitlinks/'.$bitlink.'/clicks/summary', $params);
119
+       }
120 120
 
121
-      /*
121
+       /*
122 122
       Shorten a Link
123 123
       https://dev.bitly.com/api-reference#createBitlink
124 124
       */
125
-      public function createBitlink(array $params) 
126
-      {
127
-             return $this->api->post($this->url . '/shorten', $params);
128
-      }
125
+       public function createBitlink(array $params) 
126
+       {
127
+              return $this->api->post($this->url . '/shorten', $params);
128
+       }
129 129
 
130
-      /*
130
+       /*
131 131
       Get Metrics for a Bitlink by referring domains
132 132
       https://dev.bitly.com/api-reference#getMetricsForBitlinkByReferringDomains
133 133
       */
134
-      public function getMetricsForBitlinkByReferringDomains(string $bitlink, array $params = array()) 
135
-      {
136
-             return $this->api->get($this->url . '/bitlinks/'.$bitlink.'/referring_domains', $params);
137
-      }
134
+       public function getMetricsForBitlinkByReferringDomains(string $bitlink, array $params = array()) 
135
+       {
136
+              return $this->api->get($this->url . '/bitlinks/'.$bitlink.'/referring_domains', $params);
137
+       }
138 138
  
139
-      /*
139
+       /*
140 140
       Get a QR Code
141 141
       https://dev.bitly.com/api-reference#getBitlinkQRCode
142 142
       */
143
-      public function getBitlinkQRCode(string $bitlink) 
144
-      {
145
-             return $this->api->get($this->url . '/bitlinks/'.$bitlink.'/qr');
146
-      }
143
+       public function getBitlinkQRCode(string $bitlink) 
144
+       {
145
+              return $this->api->get($this->url . '/bitlinks/'.$bitlink.'/qr');
146
+       }
147 147
  
148
-      /*
148
+       /*
149 149
       Get Metrics for a Bitlink by City
150 150
       https://dev.bitly.com/api-reference#getMetricsForBitlinkByCities
151 151
       */
152
-      public function getMetricsForBitlinkByCities(string $bitlink, array $params = array()) 
153
-      {
154
-             return $this->api->get($this->url . '/bitlinks/'.$bitlink.'/cities', $params);
155
-      }
152
+       public function getMetricsForBitlinkByCities(string $bitlink, array $params = array()) 
153
+       {
154
+              return $this->api->get($this->url . '/bitlinks/'.$bitlink.'/cities', $params);
155
+       }
156 156
 
157
-      /*
157
+       /*
158 158
       Get Metrics for a Bitlink by Device Type
159 159
       https://dev.bitly.com/api-reference#getMetricsForBitlinkByDevices
160 160
       */
161
-      public function getMetricsForBitlinkByDevices(string $bitlink, array $params = array()) 
162
-      {
163
-             return $this->api->get($this->url . '/bitlinks/'.$bitlink.'/devices', $params);
164
-      }
161
+       public function getMetricsForBitlinkByDevices(string $bitlink, array $params = array()) 
162
+       {
163
+              return $this->api->get($this->url . '/bitlinks/'.$bitlink.'/devices', $params);
164
+       }
165 165
  
166 166
 }
Please login to merge, or discard this patch.