1 | <?php |
||
11 | class Insert extends AbstractOperation |
||
12 | { |
||
13 | /** |
||
14 | * @var array |
||
15 | */ |
||
16 | private $predicate; |
||
17 | /** |
||
18 | * @var QueryInterface |
||
19 | */ |
||
20 | private $query; |
||
21 | |||
22 | /** |
||
23 | * @param RethinkInterface $rethink |
||
24 | * @param MessageInterface $message |
||
25 | * @param QueryInterface $query |
||
26 | * @param array $documents |
||
27 | */ |
||
28 | 8 | public function __construct( |
|
41 | |||
42 | /** |
||
43 | * @inheritdoc |
||
44 | */ |
||
45 | 8 | public function toArray(): array |
|
63 | } |
||
64 |