]> source.dussan.org Git - nextcloud-server.git/commitdiff
Add type of the variables to the docs
authorJoas Schilling <nickvergessen@gmx.de>
Wed, 10 Dec 2014 14:18:06 +0000 (15:18 +0100)
committerJoas Schilling <nickvergessen@gmx.de>
Wed, 10 Dec 2014 14:18:06 +0000 (15:18 +0100)
lib/private/allconfig.php
lib/public/iconfig.php

index e20f3698258b0263eb29fde92c5af631d64284b8..d4b4ed6fb6ae3b096d50786bd951ca8155d9f2b6 100644 (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) {
index fe0f1273a80d38f7cc77fc3df65cee668e825cd5..a1952ef8f84eb497d7760f49f753efc0a2986186 100644 (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);