Conditions | 4 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | protected function fillSearchTree(): void |
||
24 | { |
||
25 | if ('ok' !== $this->document['status']) { |
||
26 | throw new UnparseableApiException(); |
||
27 | } |
||
28 | |||
29 | if (isset($this->document['records'][0]['status']) && 'error' === $this->document['records'][0]['status']) { |
||
30 | throw new UnparseableApiException(); |
||
31 | } |
||
32 | |||
33 | $this->searchTree = $this->document['records'][0]; |
||
34 | } |
||
52 |