From e4a38a74c5e13b9d21ceced0a8c6ff73c342bc48 Mon Sep 17 00:00:00 2001 From: beberlei Date: Sat, 28 Nov 2009 11:30:25 +0000 Subject: [PATCH] [2.0] - DDC-169 - Extracted Method for the generation of a Schema Instance from Doctrine Metadata. --- lib/Doctrine/ORM/Tools/SchemaTool.php | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/lib/Doctrine/ORM/Tools/SchemaTool.php b/lib/Doctrine/ORM/Tools/SchemaTool.php index 46a75de3a..c03e08a2b 100644 --- a/lib/Doctrine/ORM/Tools/SchemaTool.php +++ b/lib/Doctrine/ORM/Tools/SchemaTool.php @@ -95,9 +95,19 @@ class SchemaTool */ public function getCreateSchemaSql(array $classes) { - $sql = array(); // All SQL statements + $schema = $this->getSchemaFromMetadata($classes); + return $schema->toSql($this->_platform); + } + + /** + * From a given set of metadata classes this method creates a Schema instance. + * + * @param array $classes + * @return Schema + */ + public function getSchemaFromMetadata(array $classes) + { $processedClasses = array(); // Reminder for processed classes, used for hierarchies - $sequences = array(); // Sequence SQL statements. Appended to $sql at the end. $schema = new \Doctrine\DBAL\Schema\Schema(); @@ -210,7 +220,7 @@ class SchemaTool } } - return $schema->toSql($this->_platform); + return $schema; } /**