Skip to content
Snippets Groups Projects
Commit f901c5ff authored by Lukas Reschke's avatar Lukas Reschke
Browse files

Fix PHPDoc and remove explicit type hint

parent b3a04840
No related branches found
No related tags found
No related merge requests found
......@@ -144,10 +144,10 @@ class MDB2SchemaManager {
}
/**
* @param \Doctrine\DBAL\Schema\Schema $schema
* @param \Doctrine\DBAL\Schema\Schema|\Doctrine\DBAL\Schema\SchemaDiff $schema
* @return bool
*/
private function executeSchemaChange(\Doctrine\DBAL\Schema\Schema $schema) {
private function executeSchemaChange($schema) {
$this->conn->beginTransaction();
foreach ($schema->toSql($this->conn->getDatabasePlatform()) as $sql) {
$this->conn->query($sql);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment