aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2024-06-05 08:01:04 +0000
committerMario <mario@mariovavti.com>2024-06-05 08:01:04 +0000
commitd0bb3a7354b91fc797b97f19032e014cbaaa350c (patch)
tree22b329c31c13ad59a2331f7a6abe9119f3e51272
parent9d56bb952e162dddd24d3bcdc50b2957ef0e0b97 (diff)
downloadvolse-hubzilla-d0bb3a7354b91fc797b97f19032e014cbaaa350c.tar.gz
volse-hubzilla-d0bb3a7354b91fc797b97f19032e014cbaaa350c.tar.bz2
volse-hubzilla-d0bb3a7354b91fc797b97f19032e014cbaaa350c.zip
Correct type annotation in comment for Config::Get.
-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) {