diff options
author | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-05-12 23:27:36 +0100 |
---|---|---|
committer | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-05-13 19:08:14 +0100 |
commit | bac8962bbc8cbeb4382df6bf5c8b9244c0f6340e (patch) | |
tree | cd43be963ec17976a8ef9ff84a51eeab0fe7f3ee /lib/private/config.php | |
parent | bd3bf4b507c04aba38fc368526767fe6bb7b1bd3 (diff) | |
download | nextcloud-server-bac8962bbc8cbeb4382df6bf5c8b9244c0f6340e.tar.gz nextcloud-server-bac8962bbc8cbeb4382df6bf5c8b9244c0f6340e.zip |
Fix Scrutinizer errors
Diffstat (limited to 'lib/private/config.php')
-rw-r--r-- | lib/private/config.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/private/config.php b/lib/private/config.php index 2320db9d6bd..4242682af3d 100644 --- a/lib/private/config.php +++ b/lib/private/config.php @@ -77,8 +77,8 @@ class Config { /** * @brief Gets a value from config.php * @param string $key key - * @param array|bool|string|null $default = null default value - * @return string the value or $default + * @param mixed $default = null default value + * @return mixed the value or $default * * This function gets the value from config.php. If it does not exist, * $default will be returned. @@ -94,7 +94,7 @@ class Config { /** * @brief Sets a value * @param string $key key - * @param string $value value + * @param mixed $value value * * This function sets the value and writes the config.php. * |