Commit a9018fb2 authored by jeroendedauw's avatar jeroendedauw

Improve param name

parent 2f002700
......@@ -326,13 +326,13 @@ abstract class AbstractSchemaManager
/**
* Drops the given table.
*
* @param string $table The name of the table to drop.
* @param string $tableName The name of the table to drop.
*
* @return void
*/
public function dropTable($table)
public function dropTable($tableName)
{
$this->_execSql($this->_platform->getDropTableSQL($table));
$this->_execSql($this->_platform->getDropTableSQL($tableName));
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment