diff options
author | Frank Karlitschek <frank@owncloud.org> | 2012-05-06 22:02:16 +0200 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2012-05-06 22:02:16 +0200 |
commit | 5d55c709dddad44984446efa49ceb7084fc16b3f (patch) | |
tree | fd7d0a280ab436eb40d89a3acc9e00ee8ed284f4 /lib/public/db.php | |
parent | 2edf59c026ef7c59551072ab5bfcdac576e3d65b (diff) | |
download | nextcloud-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.php | 8 |
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 */ |