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 | * @throws Exception\InvalidResponse |
||
28 | * @throws Exception\RateLimitReached |
||
29 | * @throws Exception\ExpiredAuthorization |
||
30 | * @throws Exception\ServiceUnavailable |
||
31 | */ |
||
32 | public function getResponse() : Response\Authorization\Get { |
||
49 | } |
||
50 | } |