Total Complexity | 3 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | class Mixcloud extends OAuth2Provider{ |
||
25 | |||
26 | protected string $authURL = 'https://www.mixcloud.com/oauth/authorize'; |
||
27 | protected string $accessTokenURL = 'https://www.mixcloud.com/oauth/access_token'; |
||
28 | protected string $apiURL = 'https://api.mixcloud.com'; |
||
29 | protected ?string $userRevokeURL = 'https://www.mixcloud.com/settings/applications/'; |
||
30 | protected ?string $apiDocs = 'https://www.mixcloud.com/developers/'; |
||
31 | protected ?string $applicationURL = 'https://www.mixcloud.com/developers/create/'; |
||
32 | protected int $authMethod = self::AUTH_METHOD_QUERY; |
||
33 | |||
34 | /** |
||
35 | * @inheritDoc |
||
36 | */ |
||
37 | public function me():ResponseInterface{ |
||
55 |