summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2014-10-27 14:46:41 +0100
committerMorris Jobke <hey@morrisjobke.de>2014-10-27 14:46:41 +0100
commit290e9cd5b27d5ef4835674a8f7ec40eebb9a3e5c (patch)
treeb67772cad3b6a4d2e16602978f29353a37fdb735 /lib
parentaee1edf6b5d12852b04e734486a42a5b042dfc65 (diff)
parentf7c393fa9f86730cd74fcce9d26bdce008514c7f (diff)
downloadnextcloud-server-290e9cd5b27d5ef4835674a8f7ec40eebb9a3e5c.tar.gz
nextcloud-server-290e9cd5b27d5ef4835674a8f7ec40eebb9a3e5c.zip
Merge pull request #11787 from owncloud/fix-php-docs
Fix PHPDoc
Diffstat (limited to 'lib')
-rw-r--r--lib/public/iconfig.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/iconfig.php b/lib/public/iconfig.php
index 404cf030dee..554fee5b22f 100644
--- a/lib/public/iconfig.php
+++ b/lib/public/iconfig.php
@@ -46,7 +46,7 @@ interface IConfig {
* Looks up a system wide defined value
*
* @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
+ * @param mixed $default the default value to be returned if the value isn't set
* @return mixed the value or $default
*/
public function getSystemValue($key, $default = '');