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

[2.0] Formatting.

This commit is contained in:
romanb 2009-10-22 12:53:25 +00:00
parent e2d678cc10
commit ae9a4be658

View file

@ -1722,9 +1722,10 @@ class UnitOfWork implements PropertyChangedListener
} else { } else {
// Inject collection // Inject collection
$reflField = $class->reflFields[$field]; $reflField = $class->reflFields[$field];
$pColl = new PersistentCollection($this->_em, $pColl = new PersistentCollection(
$this->_em->getClassMetadata($assoc->targetEntityName), $this->_em,
$reflField->getValue($entity) ?: new ArrayCollection $this->_em->getClassMetadata($assoc->targetEntityName),
$reflField->getValue($entity) ?: new ArrayCollection
); );
$pColl->setOwner($entity, $assoc); $pColl->setOwner($entity, $assoc);
$reflField->setValue($entity, $pColl); $reflField->setValue($entity, $pColl);