1 | <?php |
||
11 | class DbDrop extends AbstractQuery |
||
12 | { |
||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | private $name; |
||
17 | |||
18 | /** |
||
19 | * @param RethinkInterface $rethink |
||
20 | * @param MessageInterface $message |
||
21 | * @param string $name |
||
22 | */ |
||
23 | 13 | public function __construct(RethinkInterface $rethink, MessageInterface $message, string $name) |
|
31 | |||
32 | /** |
||
33 | * @inheritdoc |
||
34 | */ |
||
35 | 13 | public function toArray(): array |
|
47 | } |
||
48 |