diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-05-19 20:18:32 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-05-19 20:18:32 +0200 |
commit | b6d2d6329d99c47fa8a01a7a8db7f8f2de6b9f74 (patch) | |
tree | f517f66492d75a06655ed9906383be4930fd303b /lib/private/db.php | |
parent | 090d12705011d74f981699d3ab5e8f02479c8eaf (diff) | |
parent | dc36d3095314db8d88c2ec1005d99af595c119da (diff) | |
download | nextcloud-server-b6d2d6329d99c47fa8a01a7a8db7f8f2de6b9f74.tar.gz nextcloud-server-b6d2d6329d99c47fa8a01a7a8db7f8f2de6b9f74.zip |
Merge pull request #8639 from owncloud/drop-brief
Remove all occurences of @brief and @returns from PHPDoc
Diffstat (limited to 'lib/private/db.php')
-rw-r--r-- | lib/private/db.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/private/db.php b/lib/private/db.php index 318512dcade..df9d1aeca3a 100644 --- a/lib/private/db.php +++ b/lib/private/db.php @@ -50,7 +50,7 @@ class OC_DB { static private $type=null; /** - * @brief connects to the database + * connects to the database * @return boolean|null true if connection can be established or false on error * * Connects to the database as specified in config.php @@ -133,7 +133,7 @@ class OC_DB { } /** - * @brief Prepare a SQL query + * Prepare a SQL query * @param string $query Query string * @param int $limit * @param int $offset @@ -190,7 +190,7 @@ class OC_DB { } /** - * @brief execute a prepared statement, on error write log and throw exception + * execute a prepared statement, on error write log and throw exception * @param mixed $stmt OC_DB_StatementWrapper, * an array with 'sql' and optionally 'limit' and 'offset' keys * .. or a simple sql query string @@ -239,7 +239,7 @@ class OC_DB { } /** - * @brief gets last value of autoincrement + * gets last value of autoincrement * @param string $table The optional table name (will replace *PREFIX*) and add sequence suffix * @return string id * @throws DatabaseException @@ -255,7 +255,7 @@ class OC_DB { } /** - * @brief Insert a row if a matching row doesn't exists. + * Insert a row if a matching row doesn't exists. * @param string $table The table to insert into in the form '*PREFIX*tableName' * @param array $input An array of fieldname/value pairs * @return boolean number of updated rows @@ -282,7 +282,7 @@ class OC_DB { } /** - * @brief saves database schema to xml file + * saves database schema to xml file * @param string $file name of file * @param int $mode * @return bool @@ -295,7 +295,7 @@ class OC_DB { } /** - * @brief Creates tables from XML file + * Creates tables from XML file * @param string $file file to read structure from * @return bool * @@ -308,7 +308,7 @@ class OC_DB { } /** - * @brief update the database schema + * update the database schema * @param string $file file to read structure from * @throws Exception * @return string|boolean @@ -325,7 +325,7 @@ class OC_DB { } /** - * @brief drop a table + * drop a table * @param string $tableName the table to drop */ public static function dropTable($tableName) { @@ -343,7 +343,7 @@ class OC_DB { } /** - * @brief replaces the ownCloud tables with a new set + * replaces the ownCloud tables with a new set * @param string $file path to the MDB2 xml db export file */ public static function replaceDB( $file ) { |