| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 6 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 31 | class App { |
||
| 32 | |||
| 33 | private $url; |
||
| 34 | private $api; |
||
| 35 | |||
| 36 | public function __construct(ApiInterface $api) |
||
| 37 | { |
||
| 38 | $this->api = $api; |
||
| 39 | $this->url = 'https://api-ssl.bitly.com/v4/apps'; |
||
| 40 | } |
||
| 41 | |||
| 42 | /* |
||
| 43 | Retrieve OAuth App |
||
| 44 | https://dev.bitly.com/v4/#operation/getOAuthApp |
||
| 45 | */ |
||
| 46 | public function getOAuthApp(string $client_id) |
||
| 49 | } |
||
| 50 | |||
| 52 |