Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
21 | class Bitbucket extends OAuth2Provider implements ClientCredentials, CSRFToken, TokenRefresh{ |
||
22 | |||
23 | protected string $authURL = 'https://bitbucket.org/site/oauth2/authorize'; |
||
24 | protected string $accessTokenURL = 'https://bitbucket.org/site/oauth2/access_token'; |
||
25 | protected string $apiURL = 'https://api.bitbucket.org/2.0'; |
||
26 | protected ?string $apiDocs = 'https://developer.atlassian.com/bitbucket/api/2/reference/'; |
||
27 | protected ?string $applicationURL = 'https://developer.atlassian.com/apps/'; |
||
28 | |||
29 | /** |
||
30 | * @inheritDoc |
||
31 | */ |
||
32 | public function me():ResponseInterface{ |
||
50 |