Skip to content

Commit

Permalink
add rollBack()
Browse files Browse the repository at this point in the history
  • Loading branch information
h2lsoft committed Jan 28, 2021
1 parent e095bad commit 742daee
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/DBManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -1089,7 +1089,13 @@ public function commit()
$this->connection->commit();
}


/**
* Rollback transaction
*/
public function rollBack()
{
$this->connection->rollBack();
}

}

0 comments on commit 742daee

Please sign in to comment.