1
0
Fork 0
mirror of synced 2025-04-01 12:26:11 +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
$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;
}
/**