Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
10 | 18 | protected function verifyResponse(ResponseInterface $response) |
|
11 | { |
||
12 | 18 | if (in_array($response->getStatusCode(), [200, 201], true)) { |
|
13 | //https://developers.paystack.co/v1.0/docs/errors |
||
14 | 10 | return; |
|
15 | } |
||
16 | |||
17 | 8 | throw InvalidHttpResponseException::createFromResponse($response); |
|
18 | } |
||
19 | } |
||
20 |