diff options
author | kondou <kondou@ts.unde.re> | 2014-03-03 17:32:29 +0100 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2014-03-03 17:32:29 +0100 |
commit | 5e3b6f1fd9f3ba07031cb1cc1757d9ae94bebba6 (patch) | |
tree | 937fe553da0e7b5cb544f1b31b161805754ef603 /lib/private | |
parent | 7983c90fdcdf2d5e2dd385d3a3c8c97c60d530de (diff) | |
download | nextcloud-server-5e3b6f1fd9f3ba07031cb1cc1757d9ae94bebba6.tar.gz nextcloud-server-5e3b6f1fd9f3ba07031cb1cc1757d9ae94bebba6.zip |
Fix some more docstrings
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/config.php | 2 | ||||
-rw-r--r-- | lib/private/template/base.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/config.php b/lib/private/config.php index 3649da84973..56f47256134 100644 --- a/lib/private/config.php +++ b/lib/private/config.php @@ -77,7 +77,7 @@ class Config { /** * @brief Gets a value from config.php * @param string $key key - * @param string|null $default = null default value + * @param array|bool|string|null $default = null default value * @return string the value or $default * * This function gets the value from config.php. If it does not exist, diff --git a/lib/private/template/base.php b/lib/private/template/base.php index 232a29939cc..7aa0cb4a956 100644 --- a/lib/private/template/base.php +++ b/lib/private/template/base.php @@ -61,7 +61,7 @@ class Base { /** * @brief Assign variables * @param string $key key - * @param string $value value + * @param array|bool|integer|string $value value * @return bool * * This function assigns a variable. It can be accessed via $_[$key] in |