aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/db.php
diff options
context:
space:
mode:
authorFrank Karlitschek <frank@owncloud.org>2012-05-06 22:02:16 +0200
committerFrank Karlitschek <frank@owncloud.org>2012-05-06 22:02:16 +0200
commit5d55c709dddad44984446efa49ceb7084fc16b3f (patch)
treefd7d0a280ab436eb40d89a3acc9e00ee8ed284f4 /lib/public/db.php
parent2edf59c026ef7c59551072ab5bfcdac576e3d65b (diff)
downloadnextcloud-server-5d55c709dddad44984446efa49ceb7084fc16b3f.tar.gz
nextcloud-server-5d55c709dddad44984446efa49ceb7084fc16b3f.zip
some more documentation cleanups. much more is needed.
And greeting from the Atlanta airport. ;-)
Diffstat (limited to 'lib/public/db.php')
-rw-r--r--lib/public/db.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/public/db.php b/lib/public/db.php
index b534756a5a0..7ba98e2851e 100644
--- a/lib/public/db.php
+++ b/lib/public/db.php
@@ -44,6 +44,7 @@ class DB {
return(\OC_DB::prepare($query));
}
+
/**
* @brief gets last value of autoincrement
* @param $table string The optional table name (will replace *PREFIX*) and add sequence suffix
@@ -59,9 +60,8 @@ class DB {
}
-
/**
- * Start a transaction
+ * @brief Start a transaction
*/
public static function beginTransaction(){
return(\OC_DB::beginTransaction());
@@ -69,7 +69,7 @@ class DB {
/**
- * Commit the database changes done during a transaction that is in progress
+ * @brief Commit the database changes done during a transaction that is in progress
*/
public static function commit(){
return(\OC_DB::commit());
@@ -77,7 +77,7 @@ class DB {
/**
- * check if a result is an error, works with MDB2 and PDOException
+ * @brief check if a result is an error, works with MDB2 and PDOException
* @param mixed $result
* @return bool
*/