Skip to content
Snippets Groups Projects
Unverified Commit 10a98f9f authored by MichaIng's avatar MichaIng Committed by GitHub
Browse files

Define getSystemValueBool/Int/String function default parameter with correct type


Signed-off-by: default avatarMichaIng <micha@dietpi.com>
parent 80222e6a
No related branches found
No related tags found
No related merge requests found
......@@ -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
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment