| Total Complexity | 5 |
| Total Lines | 40 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | abstract class AbstractOperation extends AbstractAggregation implements OperationInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @inheritdoc |
||
| 14 | 6 | */ |
|
| 15 | public function delete(): QueryInterface |
||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @inheritdoc |
||
| 22 | 2 | */ |
|
| 23 | public function filter(array $predicate): TransformationCompoundInterface |
||
| 24 | 2 | { |
|
| 25 | return new Filter($this->rethink, $this->message, $this, $predicate); |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @inheritdoc |
||
| 30 | 5 | */ |
|
| 31 | public function getAll(...$keys): TransformationCompoundInterface |
||
| 34 | } |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @inheritdoc |
||
| 38 | 1 | */ |
|
| 39 | public function update(array $elements): QueryInterface |
||
| 42 | } |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @inheritdoc |
||
| 46 | 9 | */ |
|
| 47 | public function insert(array $document): QueryInterface |
||
| 52 |