Commit 5c54cfda authored by Guilherme Blanco's avatar Guilherme Blanco

Merge pull request #591 from JeroenDeDauw/tablename

Improve param name
parents d2f081de a9018fb2
...@@ -326,13 +326,13 @@ abstract class AbstractSchemaManager ...@@ -326,13 +326,13 @@ abstract class AbstractSchemaManager
/** /**
* Drops the given table. * 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 * @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