Skip to content

Commit

Permalink
Clarify return type documentation
Browse files Browse the repository at this point in the history
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
  • Loading branch information
J0WI committed Jan 12, 2023
1 parent 01a3a45 commit 108a174
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/public/IConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public function getSystemValue($key, $default = '');
*
* @param string $key the key of the value, under which it was saved
* @param bool $default the default value to be returned if the value isn't set
* @return bool the value or $default
* @return bool the value or $default, must not be null
* @since 16.0.0
*/
public function getSystemValueBool(string $key, bool $default = false): bool;
Expand All @@ -87,7 +87,7 @@ public function getSystemValueBool(string $key, bool $default = false): bool;
*
* @param string $key the key of the value, under which it was saved
* @param int $default the default value to be returned if the value isn't set
* @return int the value or $default
* @return int the value or $default, must not be null
* @since 16.0.0
*/
public function getSystemValueInt(string $key, int $default = 0): int;
Expand All @@ -97,7 +97,7 @@ public function getSystemValueInt(string $key, int $default = 0): int;
*
* @param string $key the key of the value, under which it was saved
* @param string $default the default value to be returned if the value isn't set
* @return string the value or $default
* @return string the value or $default, must not be null
* @since 16.0.0
*/
public function getSystemValueString(string $key, string $default = ''): string;
Expand Down

0 comments on commit 108a174

Please sign in to comment.