Conditions | 3 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | public function next() |
||
22 | { |
||
23 | if (!$this->first && $this->lastEvaluatedKey === null) { |
||
24 | return null; |
||
25 | } |
||
26 | $this->first = false; |
||
27 | $query = $this->setExclusiveStartKey($this->query); |
||
28 | $result = $this->execute($query); |
||
29 | $this->setLastEvaluatedKey($result); |
||
30 | return $result; |
||
31 | } |
||
32 | |||
51 |