Total Complexity | 3 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | abstract class AbstractLocation extends AbstractRequest { |
||
15 | |||
16 | protected $_account; |
||
17 | |||
18 | public function __construct(Account $account) { |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * @throws Exception\InvalidResponse |
||
24 | * @throws Exception\RateLimitReached |
||
25 | * @throws Exception\ServiceUnavailable |
||
26 | */ |
||
27 | protected function _getRawResponse() : Connector\RawResponse { |
||
49 | } |
||
50 | |||
51 | abstract protected function _getPayload() : array; |
||
52 | } |