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 |
|
36 | |||
37 | /** |
||
38 | * @inheritdoc |
||
39 | */ |
||
40 | 1 | public function update(array $document): QueryInterface |
|
44 | |||
45 | /** |
||
46 | * @inheritdoc |
||
47 | */ |
||
48 | 8 | public function insert(array $document): QueryInterface |
|
52 | } |
||
53 |