From 1299e83853d7153e5aeb5b4e67c72f62c9844d9c Mon Sep 17 00:00:00 2001
From: romanb <romanb@625475ce-881a-0410-a577-b389adb331d8>
Date: Tue, 21 Jul 2009 15:57:11 +0000
Subject: [PATCH] [2.0] Fixed docblock and return value from previous commit.

---
 lib/Doctrine/ORM/UnitOfWork.php | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/lib/Doctrine/ORM/UnitOfWork.php b/lib/Doctrine/ORM/UnitOfWork.php
index dc3ed4b3c..f493d543c 100644
--- a/lib/Doctrine/ORM/UnitOfWork.php
+++ b/lib/Doctrine/ORM/UnitOfWork.php
@@ -1311,15 +1311,15 @@ class UnitOfWork implements PropertyChangedListener
     }
     
     /**
+     * Refreshes the state of the given entity from the database, overwriting
+     * any local, unpersisted changes.
      * 
-     * 
-     * @param $entity
-     * @return unknown_type
+     * @param object $entity The entity to refresh.
      */
     public function refresh($entity)
     {
         $visited = array();
-        return $this->_doRefresh($entity, $visited);
+        $this->_doRefresh($entity, $visited);
     }
     
     /**