From 78f8aea89734286322691d79875bff283fcbf6a0 Mon Sep 17 00:00:00 2001 From: "Jonathan.Wage" Date: Mon, 17 Sep 2007 21:32:40 +0000 Subject: [PATCH] Added example code. --- lib/Doctrine/Import/Schema.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/Doctrine/Import/Schema.php b/lib/Doctrine/Import/Schema.php index daeb6d8b4..883f0dea5 100644 --- a/lib/Doctrine/Import/Schema.php +++ b/lib/Doctrine/Import/Schema.php @@ -103,7 +103,7 @@ abstract class Doctrine_Import_Schema public function buildRelationships($array) { - foreach($array as $name => $properties) { + foreach ($array as $name => $properties) { $className = $properties['className']; $relations = $properties['relations']; @@ -116,5 +116,12 @@ abstract class Doctrine_Import_Schema $this->relations[$className][$class] = $relation; } } + + // Fix the other end of the relations + foreach($this->relations as $className => $relations) { + foreach ($relations AS $alias => $relation) { + + } + } } } \ No newline at end of file