diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-09-08 16:00:32 +0200 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-09-08 16:00:32 +0200 |
commit | 6b2b8b10ee771776023e64a62f59c1bd620605fb (patch) | |
tree | 3092b4abc06a076e87a1d4a01a0756f0dbe7e9d2 /lib/public | |
parent | 221257d2fbe5b0f6f440ef5ba38a7562e37eaf1a (diff) | |
download | nextcloud-server-6b2b8b10ee771776023e64a62f59c1bd620605fb.tar.gz nextcloud-server-6b2b8b10ee771776023e64a62f59c1bd620605fb.zip |
style fixes for public db api
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/db.php | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/public/db.php b/lib/public/db.php index 5ac356bb475..6ce62b27ca2 100644 --- a/lib/public/db.php +++ b/lib/public/db.php @@ -34,8 +34,6 @@ namespace OCP; * This class provides access to the internal database system. Use this class exlusively if you want to access databases */ class DB { - - /** * @brief Prepare a SQL query * @param $query Query string @@ -47,7 +45,6 @@ class DB { return(\OC_DB::prepare($query,$limit,$offset)); } - /** * @brief gets last value of autoincrement * @param $table string The optional table name (will replace *PREFIX*) and add sequence suffix @@ -62,7 +59,6 @@ class DB { return(\OC_DB::insertid($table)); } - /** * @brief Start a transaction */ @@ -70,7 +66,6 @@ class DB { return(\OC_DB::beginTransaction()); } - /** * @brief Commit the database changes done during a transaction that is in progress */ @@ -78,7 +73,6 @@ class DB { return(\OC_DB::commit()); } - /** * @brief check if a result is an error, works with MDB2 and PDOException * @param mixed $result @@ -87,7 +81,4 @@ class DB { public static function isError($result) { return(\OC_DB::isError($result)); } - - - } |