| Total Complexity | 4 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | trait TransformationTrait |
||
| 9 | { |
||
| 10 | public function isEmpty(): QueryInterface |
||
| 13 | } |
||
| 14 | |||
| 15 | public function limit($value): Limit |
||
| 16 | { |
||
| 17 | return new Limit($this->rethink, /** @scrutinizer ignore-type */ $this, $value); |
||
| 18 | } |
||
| 19 | |||
| 20 | public function skip($value): Skip |
||
| 21 | { |
||
| 22 | return new Skip($this->rethink, /** @scrutinizer ignore-type */ $this, $value); |
||
| 23 | } |
||
| 24 | |||
| 25 | public function orderBy($key): OrderBy |
||
| 28 | } |
||
| 29 | } |
||
| 30 |