| 1 | <?php |
||
| 15 | class RenameTable extends TableOperation |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | private $newName = ''; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param string|null $database |
||
| 24 | * @param string $table |
||
| 25 | * @param string $newName |
||
| 26 | */ |
||
| 27 | public function __construct($database, string $table, string $newName) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritdoc} |
||
| 35 | */ |
||
| 36 | public function execute(CapsuleInterface $capsule) |
||
| 56 | } |