1 | <?php |
||
8 | abstract class AbstractOperation extends AbstractQuery |
||
9 | { |
||
10 | /** |
||
11 | * @inheritdoc |
||
12 | */ |
||
13 | 5 | public function count(): AbstractOperation |
|
17 | |||
18 | /** |
||
19 | * @inheritdoc |
||
20 | */ |
||
21 | 2 | public function delete(): AbstractOperation |
|
25 | |||
26 | /** |
||
27 | * @inheritdoc |
||
28 | */ |
||
29 | 1 | public function update(array $document): AbstractOperation |
|
33 | |||
34 | /** |
||
35 | * @inheritdoc |
||
36 | */ |
||
37 | 8 | public function insert(array $document): AbstractOperation |
|
41 | } |
||
42 |