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