Merge pull request #376 from lstrojny/de-deprecate-transaction-methods
De-deprecate transaction handling methods
This commit is contained in:
commit
da331cd277
1 changed files with 0 additions and 6 deletions
|
@ -192,8 +192,6 @@ class EntityManager implements ObjectManager
|
|||
|
||||
/**
|
||||
* Starts a transaction on the underlying database connection.
|
||||
*
|
||||
* @deprecated Use {@link getConnection}.beginTransaction().
|
||||
*/
|
||||
public function beginTransaction()
|
||||
{
|
||||
|
@ -238,8 +236,6 @@ class EntityManager implements ObjectManager
|
|||
|
||||
/**
|
||||
* Commits a transaction on the underlying database connection.
|
||||
*
|
||||
* @deprecated Use {@link getConnection}.commit().
|
||||
*/
|
||||
public function commit()
|
||||
{
|
||||
|
@ -248,8 +244,6 @@ class EntityManager implements ObjectManager
|
|||
|
||||
/**
|
||||
* Performs a rollback on the underlying database connection.
|
||||
*
|
||||
* @deprecated Use {@link getConnection}.rollback().
|
||||
*/
|
||||
public function rollback()
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue