コード例 #1
0
 /**
  * @since 2.5
  *
  * {@inheritDoc}
  */
 public function drop(Table $table)
 {
     $tableName = $table->getName();
     if ($this->connection->tableExists($tableName) === false) {
         // create new table
         return $this->reportMessage(" ... {$tableName} not found, skipping removal.\n");
     }
     $this->doDropTable($tableName);
     $this->reportMessage(" ... dropped table {$tableName}.\n");
 }