| Total Complexity | 2 |
| Total Lines | 16 |
| 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 |
||
| 14 | { |
||
| 15 | return new Limit($this->rethink, $this->message, $this, $value); |
||
| 16 | } |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @inheritdoc |
||
| 20 | */ |
||
| 21 | public function orderBy($key): AggregationInterface |
||
| 24 | } |
||
| 25 | } |
||
| 26 |