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