Fixed field access.
This commit is contained in:
parent
5719f8523b
commit
d56d118458
1 changed files with 1 additions and 1 deletions
|
@ -513,7 +513,7 @@ public function <methodName>()
|
||||||
$methods[] = $code;
|
$methods[] = $code;
|
||||||
}
|
}
|
||||||
} else if ($associationMapping['type'] == ClassMetadataInfo::ONE_TO_MANY) {
|
} else if ($associationMapping['type'] == ClassMetadataInfo::ONE_TO_MANY) {
|
||||||
if ($associationMapping->isOwningSide) {
|
if ($associationMapping['isOwningSide']) {
|
||||||
if ($code = $this->_generateEntityStubMethod($metadata, 'set', $associationMapping['fieldName'], $associationMapping['targetEntity'])) {
|
if ($code = $this->_generateEntityStubMethod($metadata, 'set', $associationMapping['fieldName'], $associationMapping['targetEntity'])) {
|
||||||
$methods[] = $code;
|
$methods[] = $code;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue