diff --git a/lib/Doctrine/ORM/Mapping/OneToOneMapping.php b/lib/Doctrine/ORM/Mapping/OneToOneMapping.php index 8806c039a..45fe95f32 100644 --- a/lib/Doctrine/ORM/Mapping/OneToOneMapping.php +++ b/lib/Doctrine/ORM/Mapping/OneToOneMapping.php @@ -233,7 +233,7 @@ class OneToOneMapping extends AssociationMapping $targetEntity = $em->getUnitOfWork()->getEntityPersister($this->targetEntityName)->load($joinColumnValues, $targetEntity, $this, $hints); - if ($targetEntity !== null && $inverseField) { + if ($targetEntity !== null && $inverseField && ! $targetClass->isCollectionValuedAssociation($inverseField)) { $targetClass->reflFields[$inverseField]->setValue($targetEntity, $sourceEntity); } } else { diff --git a/lib/Doctrine/ORM/UnitOfWork.php b/lib/Doctrine/ORM/UnitOfWork.php index eb1cbc6c7..e11350fc4 100644 --- a/lib/Doctrine/ORM/UnitOfWork.php +++ b/lib/Doctrine/ORM/UnitOfWork.php @@ -463,8 +463,8 @@ class UnitOfWork implements PropertyChangedListener if ($class->isCollectionValuedAssociation($name) && $actualData[$name] !== null && ! ($actualData[$name] instanceof PersistentCollection)) { - // If $actualData[$name] is Collection then unwrap the array - if ( ! $actualData[$name] instanceof ArrayCollection) { + // If $actualData[$name] is not a Collection then use an ArrayCollection. + if ( ! $actualData[$name] instanceof Collection) { $actualData[$name] = new ArrayCollection($actualData[$name]); }