From ae9a4be658d92016f9128c4c6cc54a235fe39ab3 Mon Sep 17 00:00:00 2001 From: romanb Date: Thu, 22 Oct 2009 12:53:25 +0000 Subject: [PATCH] [2.0] Formatting. --- lib/Doctrine/ORM/UnitOfWork.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/Doctrine/ORM/UnitOfWork.php b/lib/Doctrine/ORM/UnitOfWork.php index b11cf3f13..2c5e7ba0f 100644 --- a/lib/Doctrine/ORM/UnitOfWork.php +++ b/lib/Doctrine/ORM/UnitOfWork.php @@ -1722,9 +1722,10 @@ class UnitOfWork implements PropertyChangedListener } else { // Inject collection $reflField = $class->reflFields[$field]; - $pColl = new PersistentCollection($this->_em, - $this->_em->getClassMetadata($assoc->targetEntityName), - $reflField->getValue($entity) ?: new ArrayCollection + $pColl = new PersistentCollection( + $this->_em, + $this->_em->getClassMetadata($assoc->targetEntityName), + $reflField->getValue($entity) ?: new ArrayCollection ); $pColl->setOwner($entity, $assoc); $reflField->setValue($entity, $pColl);