Total Complexity | 3 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | class OpenCaching extends OAuth1Provider{ |
||
23 | |||
24 | protected string $requestTokenURL = 'https://www.opencaching.de/okapi/services/oauth/request_token'; |
||
25 | protected string $authURL = 'https://www.opencaching.de/okapi/services/oauth/authorize'; |
||
26 | protected string $accessTokenURL = 'https://www.opencaching.de/okapi/services/oauth/access_token'; |
||
27 | protected string $apiURL = 'https://www.opencaching.de/okapi/services'; |
||
28 | protected ?string $userRevokeURL = 'https://www.opencaching.de/okapi/apps/'; |
||
29 | protected ?string $apiDocs = 'https://www.opencaching.de/okapi/'; |
||
30 | protected ?string $applicationURL = 'https://www.opencaching.de/okapi/signup.html'; |
||
31 | |||
32 | /** |
||
33 | * @inheritDoc |
||
34 | */ |
||
35 | public function me():ResponseInterface{ |
||
53 |