| 1 | <?php |
||
| 12 | class Delete extends AbstractQuery |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var QueryInterface |
||
| 16 | */ |
||
| 17 | private $query; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param RethinkInterface $rethink |
||
| 21 | * @param MessageInterface $message |
||
| 22 | * @param QueryInterface $query |
||
| 23 | */ |
||
| 24 | 2 | public function __construct(RethinkInterface $rethink, MessageInterface $message, QueryInterface $query) |
|
| 32 | |||
| 33 | /** |
||
| 34 | * @inheritdoc |
||
| 35 | */ |
||
| 36 | 2 | public function toArray(): array |
|
| 45 | } |
||
| 46 |