Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
28 | 1 | return $this->parseHeaders($this->response->getHeaders()); |
|
29 | } |
||
30 | |||
31 | 1 | public function getBody(): string |
|
32 | { |
||
33 | 1 | return $this->toString(); |
|
34 | } |
||
35 | |||
36 | 11 | public function parseJson(): array |
|
37 | { |
||
38 | 11 | $response = $this->toString(); |
|
39 | 11 | $data = json_decode($response, true); |
|
40 | |||
41 | 11 | if (! $data) { |
|
59 |