Merge pull request #12758 from owncloud/fix-config-doc-block

Add type of the variables to the docs
This commit is contained in:
Morris Jobke 2014-12-10 17:22:36 +01:00
commit e2c51308df
2 changed files with 6 additions and 6 deletions

View File

@ -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) {

View File

@ -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);