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