| 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 | * @return AbstractResponse |
||
| 13 | * @throws Exception\InvalidResponse |
||
| 14 | * @throws Exception\RateLimitReached |
||
| 15 | */ |
||
| 16 | abstract public function getResponse() : AbstractResponse; |
||
| 17 | |||
| 18 | protected function _buildContactPayload(string $email) : array { |
||
| 24 | } |
||
| 25 | } |