1
0
mirror of synced 2025-02-20 06:03:15 +03:00

De-deprecate transaction handling methods

This commit is contained in:
Lars Strojny 2012-06-16 13:22:53 +02:00
parent 27b4f58b66
commit 3881e12a2d

View File

@ -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()
{