diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2013-10-17 00:07:29 +0200 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-10-17 00:49:15 +0200 |
commit | 30f4d91d01cc9f0f32767a466a5024ad4f76ebf5 (patch) | |
tree | e11281493b7792b4a770453d85f7ed1c62132ce0 /lib/public/config.php | |
parent | 04783da829d76667079eda56d1f8b66d70813b3d (diff) | |
download | nextcloud-server-30f4d91d01cc9f0f32767a466a5024ad4f76ebf5.tar.gz nextcloud-server-30f4d91d01cc9f0f32767a466a5024ad4f76ebf5.zip |
Public API documentation fixes
refs #4883
* http/response.php
* config.php
* response.php
* files.php
* idbconnection.php
* app.php
* user.php
* template.php
* share.php
* db.php
* icache.php & il10n.php
Diffstat (limited to 'lib/public/config.php')
-rw-r--r-- | lib/public/config.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/public/config.php b/lib/public/config.php index 73476d7551d..74aaa4e1891 100644 --- a/lib/public/config.php +++ b/lib/public/config.php @@ -40,7 +40,7 @@ namespace OCP; */ class Config { /** - * @brief Gets a value from config.php + * Gets a value from config.php * @param string $key key * @param string $default = null default value * @return string the value or $default @@ -53,7 +53,7 @@ class Config { } /** - * @brief Sets a value + * Sets a value * @param string $key key * @param string $value value * @return bool @@ -71,7 +71,7 @@ class Config { } /** - * @brief Gets the config value + * Gets the config value * @param string $app app * @param string $key key * @param string $default = null, default value if the key does not exist @@ -85,7 +85,7 @@ class Config { } /** - * @brief sets a value in the appconfig + * Sets a value in the appconfig * @param string $app app * @param string $key key * @param string $value value @@ -103,7 +103,7 @@ class Config { } /** - * @brief Gets the preference + * Gets the preference * @param string $user user * @param string $app app * @param string $key key @@ -118,12 +118,12 @@ class Config { } /** - * @brief sets a value in the preferences + * Sets a value in the preferences * @param string $user user * @param string $app app * @param string $key key * @param string $value value - * @returns bool + * @return bool * * Adds a value to the preferences. If the key did not exist before, it * will be added automagically. |