| 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( |
|
| 33 | |||
| 34 | /** |
||
| 35 | * @inheritdoc |
||
| 36 | */ |
||
| 37 | 13 | public function toArray(): array |
|
| 49 | } |
||
| 50 |