1 | <?php |
||
12 | class Fake extends AbstractService |
||
13 | { |
||
14 | public function __construct( |
||
22 | |||
23 | /** |
||
24 | * {@inheritdoc} |
||
25 | */ |
||
26 | public function getRequestTokenEndpoint(): void |
||
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | public function getAuthorizationEndpoint(): void |
||
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | public function getAccessTokenEndpoint(): void |
||
43 | |||
44 | /** |
||
45 | * {@inheritdoc} |
||
46 | */ |
||
47 | protected function parseRequestTokenResponse($responseBody): void |
||
50 | |||
51 | /** |
||
52 | * {@inheritdoc} |
||
53 | */ |
||
54 | protected function parseAccessTokenResponse($responseBody): void |
||
57 | } |
||
58 |