summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2014-12-10 17:22:36 +0100
committerMorris Jobke <hey@morrisjobke.de>2014-12-10 17:22:36 +0100
commite2c51308dfb8b72c4f0c2a39c09895915d59135f (patch)
tree502145178ee432bc07ddbe09f9452b56ca1a2f09
parent6143232da604cb1fc0139acc114f1560fe7e2798 (diff)
parentbef7392c4c961d540b8a7687b3a7d975db058216 (diff)
downloadnextcloud-server-e2c51308dfb8b72c4f0c2a39c09895915d59135f.tar.gz
nextcloud-server-e2c51308dfb8b72c4f0c2a39c09895915d59135f.zip
Merge pull request #12758 from owncloud/fix-config-doc-block
Add type of the variables to the docs
-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);