Total Complexity | 4 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | trait TransformationTrait |
||
9 | { |
||
10 | /** |
||
11 | * @inheritdoc |
||
12 | */ |
||
13 | public function isEmpty(): QueryInterface |
||
16 | } |
||
17 | |||
18 | /** |
||
19 | * @inheritdoc |
||
20 | */ |
||
21 | public function limit($value): Limit |
||
22 | { |
||
23 | return new Limit($this->rethink, $this, $value); |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * @inheritdoc |
||
28 | */ |
||
29 | public function skip($value): Skip |
||
30 | { |
||
31 | return new Skip($this->rethink, $this, $value); |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * @inheritdoc |
||
36 | */ |
||
37 | public function orderBy($key): OrderBy |
||
40 | } |
||
41 | } |
||
42 |