Skip to content

Commit

Permalink
De-deprecate transaction handling methods
Browse files Browse the repository at this point in the history
  • Loading branch information
lstrojny committed Jun 16, 2012
1 parent 27b4f58 commit 3881e12
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions lib/Doctrine/ORM/EntityManager.php
Expand Up @@ -192,8 +192,6 @@ public function getExpressionBuilder()

/**
* Starts a transaction on the underlying database connection.
*
* @deprecated Use {@link getConnection}.beginTransaction().
*/
public function beginTransaction()
{
Expand Down Expand Up @@ -234,8 +232,6 @@ public function transactional(Closure $func)

/**
* Commits a transaction on the underlying database connection.
*
* @deprecated Use {@link getConnection}.commit().
*/
public function commit()
{
Expand All @@ -244,8 +240,6 @@ public function commit()

/**
* Performs a rollback on the underlying database connection.
*
* @deprecated Use {@link getConnection}.rollback().
*/
public function rollback()
{
Expand Down

0 comments on commit 3881e12

Please sign in to comment.