aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-06-05 08:01:04 +0000
committerMario <mario@mariovavti.com>2024-06-05 08:01:04 +0000
commit48357582934bd0297cd01118c3f743383eb96fbe (patch)
tree571d9fc2fe45fcd6dac3848201101f62cce708e1 /Zotlabs/Lib
parent14df925aa606a65e2f362bf920def242c31a0191 (diff)
parentd0bb3a7354b91fc797b97f19032e014cbaaa350c (diff)
downloadvolse-hubzilla-48357582934bd0297cd01118c3f743383eb96fbe.tar.gz
volse-hubzilla-48357582934bd0297cd01118c3f743383eb96fbe.tar.bz2
volse-hubzilla-48357582934bd0297cd01118c3f743383eb96fbe.zip
Merge branch 'correct-type-annotation-for-config-get' into 'dev'
Correct type annotation in comment for Config::Get. See merge request hubzilla/core!2127
Diffstat (limited to 'Zotlabs/Lib')
-rw-r--r--Zotlabs/Lib/Config.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Config.php b/Zotlabs/Lib/Config.php
index 95df8ed6f..cd8b08991 100644
--- a/Zotlabs/Lib/Config.php
+++ b/Zotlabs/Lib/Config.php
@@ -115,7 +115,7 @@ class Config {
* The category of the configuration value
* @param string $key
* The configuration key to query
- * @param string $default (optional) default false
+ * @param mixed $default (optional) default false
* @return mixed Return value or false on error or if not set
*/
public static function Get($family, $key, $default = false) {