| Total Complexity | 2 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class Get extends AbstractRequest { |
||
| 16 | |||
| 17 | protected $_account; |
||
| 18 | protected $_authorizationURL; |
||
| 19 | |||
| 20 | public function __construct(Account $account, string $authorizationURL) { |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return Response\AbstractResponse|Response\Authorization\Get |
||
| 28 | * @throws Exception\InvalidResponse |
||
| 29 | * @throws Exception\RateLimitReached |
||
| 30 | * @throws Exception\ExpiredAuthorization |
||
| 31 | */ |
||
| 32 | public function getResponse() : Response\AbstractResponse { |
||
| 49 | } |
||
| 50 | } |