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