| Total Complexity | 6 | 
| Total Lines | 44 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 12 | class Fake extends AbstractService | ||
| 13 | { | ||
| 14 | public function __construct( | ||
| 21 | } | ||
| 22 | |||
| 23 | /** | ||
| 24 |      * {@inheritdoc} | ||
| 25 | */ | ||
| 26 | public function getRequestTokenEndpoint(): void | ||
| 27 |     { | ||
| 28 | } | ||
| 29 | |||
| 30 | /** | ||
| 31 |      * {@inheritdoc} | ||
| 32 | */ | ||
| 33 | public function getAuthorizationEndpoint(): void | ||
| 35 | } | ||
| 36 | |||
| 37 | /** | ||
| 38 |      * {@inheritdoc} | ||
| 39 | */ | ||
| 40 | public function getAccessTokenEndpoint(): void | ||
| 42 | } | ||
| 43 | |||
| 44 | /** | ||
| 45 |      * {@inheritdoc} | ||
| 46 | */ | ||
| 47 | protected function parseRequestTokenResponse($responseBody): void | ||
| 48 |     { | ||
| 49 | } | ||
| 50 | |||
| 51 | /** | ||
| 52 |      * {@inheritdoc} | ||
| 53 | */ | ||
| 54 | protected function parseAccessTokenResponse($responseBody): void | ||
| 56 | } | ||
| 57 | } | ||
| 58 |