Fixed ObjectHydrator when namespace alias is given.
This commit is contained in:
parent
f5f583d1cc
commit
23e0bb7345
1 changed files with 9 additions and 3 deletions
|
@ -83,7 +83,7 @@ class ObjectHydrator extends AbstractHydrator
|
||||||
*/
|
*/
|
||||||
private $existingCollections = array();
|
private $existingCollections = array();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
protected function prepare()
|
protected function prepare()
|
||||||
|
@ -102,6 +102,12 @@ class ObjectHydrator extends AbstractHydrator
|
||||||
$this->identifierMap[$dqlAlias] = array();
|
$this->identifierMap[$dqlAlias] = array();
|
||||||
$this->idTemplate[$dqlAlias] = '';
|
$this->idTemplate[$dqlAlias] = '';
|
||||||
|
|
||||||
|
// Check for namespace alias.
|
||||||
|
if (strpos($className, ':') !== false) {
|
||||||
|
$metadata = $this->_em->getClassMetadata($className);
|
||||||
|
$className = $metadata->name;
|
||||||
|
}
|
||||||
|
|
||||||
if ( ! isset($this->ce[$className])) {
|
if ( ! isset($this->ce[$className])) {
|
||||||
$this->ce[$className] = $this->_em->getClassMetadata($className);
|
$this->ce[$className] = $this->_em->getClassMetadata($className);
|
||||||
}
|
}
|
||||||
|
@ -525,7 +531,7 @@ class ObjectHydrator extends AbstractHydrator
|
||||||
// check for existing result from the iterations before
|
// check for existing result from the iterations before
|
||||||
if ( ! isset($this->identifierMap[$dqlAlias][$id[$dqlAlias]])) {
|
if ( ! isset($this->identifierMap[$dqlAlias][$id[$dqlAlias]])) {
|
||||||
$element = $this->getEntity($rowData[$dqlAlias], $dqlAlias);
|
$element = $this->getEntity($rowData[$dqlAlias], $dqlAlias);
|
||||||
|
|
||||||
if ($this->_rsm->isMixed) {
|
if ($this->_rsm->isMixed) {
|
||||||
$element = array($entityKey => $element);
|
$element = array($entityKey => $element);
|
||||||
}
|
}
|
||||||
|
@ -597,7 +603,7 @@ class ObjectHydrator extends AbstractHydrator
|
||||||
|
|
||||||
if ($count === 1) {
|
if ($count === 1) {
|
||||||
$result[$resultKey] = $obj;
|
$result[$resultKey] = $obj;
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue