| 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 |
||
| 18 | |||
| 19 | /** |
||
| 20 | * {@inheritdoc} |
||
| 21 | */ |
||
| 22 | public function getAccessTokenEndpoint(): void |
||
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | */ |
||
| 29 | protected function parseAccessTokenResponse($responseBody): void |
||
| 32 | } |
||
| 33 |