summaryrefslogtreecommitdiffstats
path: root/lib/public/IAppConfig.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2016-06-06 10:28:10 +0200
committerJoas Schilling <nickvergessen@owncloud.com>2016-06-06 12:38:20 +0200
commit911fd3ead4e8ef3451aabc4b1f0cd1c7fc106e44 (patch)
tree2b1093f1beee5e871809628774859d997bc67b00 /lib/public/IAppConfig.php
parentc0a91ddca797c9821d3ce8771664b17ee588535f (diff)
downloadnextcloud-server-911fd3ead4e8ef3451aabc4b1f0cd1c7fc106e44.tar.gz
nextcloud-server-911fd3ead4e8ef3451aabc4b1f0cd1c7fc106e44.zip
Do not allow to store boolean configs, they behave unexpected on postgres
Diffstat (limited to 'lib/public/IAppConfig.php')
-rw-r--r--lib/public/IAppConfig.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/IAppConfig.php b/lib/public/IAppConfig.php
index 1406e8a56d6..22fcdbbb205 100644
--- a/lib/public/IAppConfig.php
+++ b/lib/public/IAppConfig.php
@@ -88,7 +88,7 @@ interface IAppConfig {
* sets a value in the appconfig
* @param string $app app
* @param string $key key
- * @param string $value value
+ * @param string|float|int $value value
* @deprecated 8.0.0 use method setAppValue of \OCP\IConfig
*
* Sets a value. If the key did not exist before it will be created.