From 071adf68cd816b564f011e56500272b945906bdd Mon Sep 17 00:00:00 2001 From: "Jonathan H. Wage" Date: Tue, 13 Apr 2010 14:09:11 -0400 Subject: [PATCH] Fixing tabs in ClassMetadata class --- lib/Doctrine/ORM/Mapping/ClassMetadata.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/Doctrine/ORM/Mapping/ClassMetadata.php b/lib/Doctrine/ORM/Mapping/ClassMetadata.php index aa16d865d..21bbffe7e 100644 --- a/lib/Doctrine/ORM/Mapping/ClassMetadata.php +++ b/lib/Doctrine/ORM/Mapping/ClassMetadata.php @@ -243,10 +243,10 @@ class ClassMetadata extends ClassMetadataInfo // Store ReflectionProperty of mapped field $sourceFieldName = $assocMapping->sourceFieldName; - - $refProp = $this->reflClass->getProperty($sourceFieldName); - $refProp->setAccessible(true); - $this->reflFields[$sourceFieldName] = $refProp; + + $refProp = $this->reflClass->getProperty($sourceFieldName); + $refProp->setAccessible(true); + $this->reflFields[$sourceFieldName] = $refProp; } /**