From 3881e12a2d703a0bf620107b4515df1e52104e81 Mon Sep 17 00:00:00 2001 From: Lars Strojny Date: Sat, 16 Jun 2012 13:22:53 +0200 Subject: [PATCH] De-deprecate transaction handling methods --- lib/Doctrine/ORM/EntityManager.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/Doctrine/ORM/EntityManager.php b/lib/Doctrine/ORM/EntityManager.php index 0679ce85b..85b593922 100644 --- a/lib/Doctrine/ORM/EntityManager.php +++ b/lib/Doctrine/ORM/EntityManager.php @@ -192,8 +192,6 @@ class EntityManager implements ObjectManager /** * Starts a transaction on the underlying database connection. - * - * @deprecated Use {@link getConnection}.beginTransaction(). */ public function beginTransaction() { @@ -234,8 +232,6 @@ class EntityManager implements ObjectManager /** * Commits a transaction on the underlying database connection. - * - * @deprecated Use {@link getConnection}.commit(). */ public function commit() { @@ -244,8 +240,6 @@ class EntityManager implements ObjectManager /** * Performs a rollback on the underlying database connection. - * - * @deprecated Use {@link getConnection}.rollback(). */ public function rollback() {