| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | public function getData($data, $url, $sourceUrl, $bookmarks = []) |
||
| 22 | { |
||
| 23 | $data['options'] = $data; |
||
| 24 | $get = Request::createRequestData($data, $sourceUrl, $bookmarks); |
||
| 25 | $getString = UrlHelper::buildRequestString($get); |
||
| 26 | $response = $this->getRequest()->exec($url . '?' . $getString); |
||
| 27 | |||
| 28 | return $this->getResponse()->getPaginationData($response); |
||
| 29 | } |
||
| 30 | |||
| 45 | } |