From a16ca32981b055fb03c4eb39f13f36d7288cd8e0 Mon Sep 17 00:00:00 2001 From: Guilherme Blanco Date: Thu, 15 Mar 2012 01:15:47 -0400 Subject: [PATCH] Coding style fixes. --- lib/Doctrine/ORM/PersistentCollection.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/Doctrine/ORM/PersistentCollection.php b/lib/Doctrine/ORM/PersistentCollection.php index 3bfb0d1eb..25ccddd1a 100644 --- a/lib/Doctrine/ORM/PersistentCollection.php +++ b/lib/Doctrine/ORM/PersistentCollection.php @@ -37,7 +37,7 @@ use Doctrine\ORM\Mapping\ClassMetadata, * @author Konsta Vesterinen * @author Roman Borschel * @author Giorgio Sironi - * @todo Design for inheritance to allow custom implementations? + * @todo Design for inheritance to allow custom implementations? */ final class PersistentCollection implements Collection { @@ -775,12 +775,15 @@ final class PersistentCollection implements Collection public function __clone() { $this->initialize(); + $this->owner = null; if (is_object($this->coll)) { $this->coll = clone $this->coll; } + $this->snapshot = array(); + $this->changed(); } }