summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-12-10 15:18:06 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-12-10 15:18:06 +0100
commitbef7392c4c961d540b8a7687b3a7d975db058216 (patch)
tree587f56c4677c4d60902cb596d629da10068012ba /lib
parent3898fbc0d2d65785b8b132645c5bf99077d16818 (diff)
downloadnextcloud-server-bef7392c4c961d540b8a7687b3a7d975db058216.tar.gz
nextcloud-server-bef7392c4c961d540b8a7687b3a7d975db058216.zip
Add type of the variables to the docs
Diffstat (limited to 'lib')
-rw-r--r--lib/private/allconfig.php6
-rw-r--r--lib/public/iconfig.php6
2 files changed, 6 insertions, 6 deletions
diff --git a/lib/private/allconfig.php b/lib/private/allconfig.php
index e20f3698258..d4b4ed6fb6a 100644
--- a/lib/private/allconfig.php
+++ b/lib/private/allconfig.php
@@ -332,9 +332,9 @@ class AllConfig implements \OCP\IConfig {
/**
* Fetches a mapped list of userId -> value, for a specified app and key and a list of user IDs.
*
- * @param $appName app to get the value for
- * @param $key the key to get the value for
- * @param $userIds the user IDs to fetch the values for
+ * @param string $appName app to get the value for
+ * @param string $key the key to get the value for
+ * @param array $userIds the user IDs to fetch the values for
* @return array Mapped values: userId => value
*/
public function getUserValueForUsers($appName, $key, $userIds) {
diff --git a/lib/public/iconfig.php b/lib/public/iconfig.php
index fe0f1273a80..a1952ef8f84 100644
--- a/lib/public/iconfig.php
+++ b/lib/public/iconfig.php
@@ -128,9 +128,9 @@ interface IConfig {
/**
* Fetches a mapped list of userId -> value, for a specified app and key and a list of user IDs.
*
- * @param $appName app to get the value for
- * @param $key the key to get the value for
- * @param $userIds the user IDs to fetch the values for
+ * @param string $appName app to get the value for
+ * @param string $key the key to get the value for
+ * @param array $userIds the user IDs to fetch the values for
* @return array Mapped values: userId => value
*/
public function getUserValueForUsers($appName, $key, $userIds);