From 53b3030aa2da893f11ee4cfbadad27e7827d871a Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Sat, 19 Nov 2011 08:58:58 +0100 Subject: [PATCH] Clarify EntityManager#transactional() docblock --- lib/Doctrine/ORM/EntityManager.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Doctrine/ORM/EntityManager.php b/lib/Doctrine/ORM/EntityManager.php index b3583de8e..8bb7a5896 100644 --- a/lib/Doctrine/ORM/EntityManager.php +++ b/lib/Doctrine/ORM/EntityManager.php @@ -199,6 +199,7 @@ class EntityManager implements ObjectManager * the transaction is rolled back, the EntityManager closed and the exception re-thrown. * * @param Closure $func The function to execute transactionally. + * @return mixed Returns the non-empty value returned from the closure or true instead */ public function transactional(Closure $func) {