Browse Source

Add type of the variables to the docs

remotes/origin/fix-10825
Joas Schilling 11 years ago
parent
commit
bef7392c4c
  1. 6
      lib/private/allconfig.php
  2. 6
      lib/public/iconfig.php

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

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

Loading…
Cancel
Save