summaryrefslogtreecommitdiffstats
path: root/lib/public/db.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-12-19 00:33:29 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2013-12-19 00:33:29 +0100
commitaa17a896ac03a4aa0530b9fbdf444d1e159d6ec2 (patch)
treef261fca860af7fb60831bafdc72b48d0a273df78 /lib/public/db.php
parent5eae75eeca825adedccb1ee29793ffab0502d6e9 (diff)
downloadnextcloud-server-aa17a896ac03a4aa0530b9fbdf444d1e159d6ec2.tar.gz
nextcloud-server-aa17a896ac03a4aa0530b9fbdf444d1e159d6ec2.zip
fix return statement
Diffstat (limited to 'lib/public/db.php')
-rw-r--r--lib/public/db.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/db.php b/lib/public/db.php
index 5dcb2d9bf4a..4a19d78d444 100644
--- a/lib/public/db.php
+++ b/lib/public/db.php
@@ -86,14 +86,14 @@ class DB {
* Start a transaction
*/
public static function beginTransaction() {
- return(\OC_DB::beginTransaction());
+ \OC_DB::beginTransaction();
}
/**
* Commit the database changes done during a transaction that is in progress
*/
public static function commit() {
- return(\OC_DB::commit());
+ \OC_DB::commit();
}
/**