Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2014-02-06 19:30:58 +0400
committerJörn Friedrich Dreyer <jfd@butonic.de>2014-02-06 20:02:21 +0400
commit2a6a9a8cefcf68f48d95e124db0c1b7edc9fe356 (patch)
tree66d682a22c3d12d1838822fc52cdd48fa765f5df /lib/private/appconfig.php
parent0d94da7e9ef9550c8ae0244b203ca84e5ee007b0 (diff)
polish documentation based on scrutinizer patches
Diffstat (limited to 'lib/private/appconfig.php')
-rw-r--r--lib/private/appconfig.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/private/appconfig.php b/lib/private/appconfig.php
index da0b2ff8604..4dbbfbcf85d 100644
--- a/lib/private/appconfig.php
+++ b/lib/private/appconfig.php
@@ -84,6 +84,9 @@ class OC_Appconfig {
return $keys;
}
+ /**
+ * @param string $app
+ */
private static function getAppValues($app) {
if (!isset(self::$cache[$app])) {
self::$cache[$app] = array();
@@ -145,7 +148,7 @@ class OC_Appconfig {
* @param string $app app
* @param string $key key
* @param string $value value
- * @return bool
+ * @return boolean|null
*
* Sets a value. If the key did not exist before it will be created.
*/
@@ -212,6 +215,8 @@ class OC_Appconfig {
*
* @param app
* @param key
+ * @param boolean $app
+ * @param string $key
* @return array
*/
public static function getValues($app, $key) {