diff options
Diffstat (limited to 'lib/private/appconfig.php')
-rw-r--r-- | lib/private/appconfig.php | 7 |
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) { |