From 58bfed2bec7084734be46ba948866631fd28d080 Mon Sep 17 00:00:00 2001 From: zYne Date: Tue, 22 May 2007 20:52:19 +0000 Subject: [PATCH] --- lib/Doctrine/Transaction.php | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/lib/Doctrine/Transaction.php b/lib/Doctrine/Transaction.php index a2f9154d9..ba6e2cd26 100644 --- a/lib/Doctrine/Transaction.php +++ b/lib/Doctrine/Transaction.php @@ -67,10 +67,16 @@ class Doctrine_Transaction extends Doctrine_Connection_Module * @var array $_collections an array of Doctrine_Collection objects that were affected during the Transaction */ protected $_collections = array(); - /** + /** * addCollection + * adds a collection in the internal array of collections * - * @param Doctrine_Collection $coll + * at the end of each commit this array is looped over and + * of every collection Doctrine then takes a snapshot in order + * to keep the collections up to date with the database + * + * @param Doctrine_Collection $coll a collection to be added + * @return void */ public function addCollection(Doctrine_Collection $coll) { @@ -97,8 +103,11 @@ class Doctrine_Transaction extends Doctrine_Connection_Module } } /** + * addDelete * adds record into pending delete list - * @param Doctrine_Record $record + * + * @param Doctrine_Record $record a record to be added + * @return void */ public function addDelete(Doctrine_Record $record) {