Merge pull request #20717 from nextcloud/fix/getconfig-param-definitions

Define getSystemValueBool/Int/String function default parameter with correct type
This commit is contained in:
Roeland Jago Douma 2020-04-30 09:02:58 +02:00 committed by GitHub
commit 4472777769
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -130,7 +130,7 @@ class AllConfig implements \OCP\IConfig {
* Looks up a boolean system wide defined value
*
* @param string $key the key of the value, under which it was saved
* @param mixed $default the default value to be returned if the value isn't set
* @param bool $default the default value to be returned if the value isn't set
*
* @return bool
*
@ -144,7 +144,7 @@ class AllConfig implements \OCP\IConfig {
* Looks up an integer system wide defined value
*
* @param string $key the key of the value, under which it was saved
* @param mixed $default the default value to be returned if the value isn't set
* @param int $default the default value to be returned if the value isn't set
*
* @return int
*
@ -158,7 +158,7 @@ class AllConfig implements \OCP\IConfig {
* Looks up a string system wide defined value
*
* @param string $key the key of the value, under which it was saved
* @param mixed $default the default value to be returned if the value isn't set
* @param string $default the default value to be returned if the value isn't set
*
* @return string
*