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