1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

Fixing tabs in ClassMetadata class

This commit is contained in:
Jonathan H. Wage 2010-04-13 14:09:11 -04:00
parent 43dc7eb065
commit 071adf68cd

View file

@ -243,10 +243,10 @@ class ClassMetadata extends ClassMetadataInfo
// Store ReflectionProperty of mapped field // Store ReflectionProperty of mapped field
$sourceFieldName = $assocMapping->sourceFieldName; $sourceFieldName = $assocMapping->sourceFieldName;
$refProp = $this->reflClass->getProperty($sourceFieldName); $refProp = $this->reflClass->getProperty($sourceFieldName);
$refProp->setAccessible(true); $refProp->setAccessible(true);
$this->reflFields[$sourceFieldName] = $refProp; $this->reflFields[$sourceFieldName] = $refProp;
} }
/** /**