| Total Complexity | 3 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | abstract class AbstractAggregation extends AbstractQuery implements AggregationInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @inheritdoc |
||
| 12 | */ |
||
| 13 | public function limit($value): AggregationInterface |
||
| 16 | } |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @inheritdoc |
||
| 20 | */ |
||
| 21 | public function skip($value): AggregationInterface |
||
| 22 | { |
||
| 23 | return new Skip($this->rethink, $this->message, $this, $value); |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @inheritdoc |
||
| 28 | */ |
||
| 29 | public function orderBy($key): AggregationInterface |
||
| 32 | } |
||
| 33 | } |
||
| 34 |