Skip to content

Commit

Permalink
Merge pull request #6 from phplicengine/scrutinizer-patch-1
Browse files Browse the repository at this point in the history
Scrutinizer Auto-Fixes
  • Loading branch information
phplicengine committed Nov 25, 2019
2 parents 8526161 + 3222933 commit 3909013
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/PHPLicengine/Service/App.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class App {
private $url;
private $api;

public function __construct (ApiInterface $api)
public function __construct(ApiInterface $api)
{
$this->api = $api;
$this->url = 'https://api-ssl.bitly.com/v4/apps';
Expand All @@ -43,7 +43,7 @@ public function __construct (ApiInterface $api)
*/
public function getOAuthApp(string $client_id)
{
return $this->api->get($this->url . '/'.$client_id);
return $this->api->get($this->url.'/'.$client_id);
}

}

0 comments on commit 3909013

Please sign in to comment.