Total Complexity | 1 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | abstract class AbstractRequest { |
||
10 | |||
11 | /** |
||
12 | * @throws Exception\InvalidResponse |
||
13 | * @throws Exception\RateLimitReached |
||
14 | * @throws Exception\ServiceUnavailable |
||
15 | */ |
||
16 | abstract public function getResponse() : AbstractResponse; |
||
17 | |||
18 | protected function _buildContactPayload(string $email) : array { |
||
24 | } |
||
25 | } |