| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 73 | 1 | public function getPage($pageNumber) |
|
| 74 | { |
||
| 75 | 1 | $result = json_decode($this->client->getPrivateEndpoint($this->endPoint, $this->params + [ |
|
| 76 | 1 | 'pageIndex' => $pageNumber + 1, |
|
| 77 | 1 | ])); |
|
| 78 | 1 | $this->totalSize = $result->TotalItems; |
|
| 79 | 1 | return array_map($this->translator, $result->Data); |
|
| 80 | } |
||
| 81 | } |
||
| 82 |