1 | <?php |
||
19 | class EveOnline extends AbstractService |
||
20 | { |
||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | protected function init() |
||
30 | |||
31 | /** |
||
32 | * Returns the authorization API endpoint. |
||
33 | * @return UriInterface |
||
34 | */ |
||
35 | public function getAuthorizationEndpoint() |
||
39 | |||
40 | /** |
||
41 | * Returns the access token API endpoint. |
||
42 | * @return UriInterface |
||
43 | */ |
||
44 | public function getAccessTokenEndpoint() |
||
48 | |||
49 | /** |
||
50 | * Parses the access token response and returns a TokenInterface. |
||
51 | * |
||
52 | * @param string $responseBody |
||
53 | * |
||
54 | * @return TokenInterface |
||
55 | * @throws TokenResponseException |
||
56 | */ |
||
57 | protected function parseAccessTokenResponse($responseBody) |
||
85 | |||
86 | /** |
||
87 | * {@inheritdoc} |
||
88 | */ |
||
89 | protected function getAuthorizationMethod() |
||
93 | } |
||
94 |