| Total Complexity | 3 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class Fake extends AbstractService |
||
| 8 | { |
||
| 9 | const SCOPE_FOO = 'https://www.pieterhordijk.com/auth'; |
||
| 10 | const SCOPE_CUSTOM = 'custom'; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * {@inheritdoc} |
||
| 14 | */ |
||
| 15 | public function getAuthorizationEndpoint(): void |
||
| 17 | } |
||
| 18 | |||
| 19 | /** |
||
| 20 | * {@inheritdoc} |
||
| 21 | */ |
||
| 22 | public function getAccessTokenEndpoint(): void |
||
| 23 | { |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | */ |
||
| 29 | protected function parseAccessTokenResponse($responseBody): void |
||
| 31 | } |
||
| 32 | } |
||
| 33 |