'DROP TABLE %1$s' ]; /** * @var string */ protected $table = ''; /** * @param string|TableIdentifier $table */ public function __construct($table = '') { $this->table = $table; } protected function processTable(PlatformInterface $adapterPlatform = null) { return [$this->resolveTable($this->table, $adapterPlatform)]; } }