Skip to content

Commit

Permalink
Merge pull request #376 from lstrojny/de-deprecate-transaction-methods
Browse files Browse the repository at this point in the history
De-deprecate transaction handling methods
  • Loading branch information
beberlei committed Jul 4, 2012
2 parents 30e86f4 + 3881e12 commit da331cd
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 @@ -238,8 +236,6 @@ public function transactional($func)

/**
* Commits a transaction on the underlying database connection.
*
* @deprecated Use {@link getConnection}.commit().
*/
public function commit()
{
Expand All @@ -248,8 +244,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 da331cd

Please sign in to comment.