1
0
mirror of synced 2025-01-20 15:31:40 +03:00

[2.0] Fixed issue with ConvertMappingTask that was missing brackets on method declaration.

This commit is contained in:
guilhermeblanco 2009-12-26 15:13:26 +00:00
parent 6ffa75ab40
commit 64f59a7a49

View File

@ -234,7 +234,7 @@ class ConvertMappingTask extends AbstractTask
// If --from==database then the source is an instance of SchemaManager // If --from==database then the source is an instance of SchemaManager
// for the current EntityMAnager // for the current EntityMAnager
if ($type == 'database') { if ($type == 'database') {
$em = $this->getConfiguration->getAttribute('em'); $em = $this->getConfiguration()->getAttribute('em');
return $em->getConnection()->getSchemaManager(); return $em->getConnection()->getSchemaManager();
} else { } else {