1 | <?php |
||
9 | abstract class AbstractOperation extends AbstractQuery implements OperationInterface |
||
10 | { |
||
11 | /** |
||
12 | * @inheritdoc |
||
13 | */ |
||
14 | 6 | public function count(): QueryInterface |
|
18 | |||
19 | /** |
||
20 | * @inheritdoc |
||
21 | */ |
||
22 | 2 | public function delete(): QueryInterface |
|
26 | |||
27 | /** |
||
28 | * @inheritdoc |
||
29 | */ |
||
30 | 5 | public function filter(array $documents): OperationInterface |
|
34 | |||
35 | /** |
||
36 | * @inheritdoc |
||
37 | */ |
||
38 | 1 | public function update(array $document): QueryInterface |
|
42 | |||
43 | /** |
||
44 | * @inheritdoc |
||
45 | */ |
||
46 | 8 | public function insert(array $document): QueryInterface |
|
50 | } |
||
51 |