| Total Complexity | 3 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | class GitLab extends OAuth2Provider implements ClientCredentials, CSRFToken, TokenRefresh{ |
||
| 22 | |||
| 23 | protected string $authURL = 'https://gitlab.com/oauth/authorize'; |
||
| 24 | protected string $accessTokenURL = 'https://gitlab.com/oauth/token'; |
||
| 25 | protected string $apiURL = 'https://gitlab.com/api'; |
||
| 26 | protected ?string $apiDocs = 'https://docs.gitlab.com/ee/api/README.html'; |
||
| 27 | protected ?string $applicationURL = 'https://gitlab.com/profile/applications'; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @inheritDoc |
||
| 31 | */ |
||
| 32 | public function me():ResponseInterface{ |
||
| 50 |