1 | <?php |
||
12 | class Fake extends AbstractService |
||
13 | { |
||
14 | public function __construct( |
||
15 | CredentialsInterface $credentials, |
||
16 | ClientInterface $httpClient, |
||
17 | TokenStorageInterface $storage, |
||
18 | SignatureInterface $signature, |
||
19 | UriInterface $baseApiUri = null |
||
20 | ) { |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * {@inheritdoc} |
||
25 | */ |
||
26 | public function getRequestTokenEndpoint() |
||
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | public function getAuthorizationEndpoint() |
||
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | public function getAccessTokenEndpoint() |
||
43 | |||
44 | /** |
||
45 | * {@inheritdoc} |
||
46 | */ |
||
47 | protected function parseRequestTokenResponse($responseBody) |
||
50 | |||
51 | /** |
||
52 | * {@inheritdoc} |
||
53 | */ |
||
54 | protected function parseAccessTokenResponse($responseBody) |
||
57 | } |
||
58 |