Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
44 | protected function getPage($direction = 'next') |
||
45 | { |
||
46 | if (isset($this->detail['_links'][$direction])) { |
||
47 | $next_uri = $this->detail['_links'][$direction]['href']; |
||
48 | $this->detail = $this->client->get($next_uri); |
||
49 | } else { |
||
50 | $this->detail = json_encode(array()); |
||
51 | } |
||
52 | |||
53 | return $this->detail; |
||
54 | } |
||
55 | } |
||
56 |