aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2024-09-02 15:33:58 +0200
committerGitHub <noreply@github.com>2024-09-02 15:33:58 +0200
commitcbeca43ee8ed1f47ca6604b2e201b6e52b15af63 (patch)
tree288ba5fd03d41aaad63b5ccdcd82834ec99f1d15 /lib/public
parent09b8aea8f6783514bffe00df6abbf9fa542faac5 (diff)
parentbdce5921f6d21b8fc583aac3d2e36e8f6ce9a98a (diff)
downloadnextcloud-server-cbeca43ee8ed1f47ca6604b2e201b6e52b15af63.tar.gz
nextcloud-server-cbeca43ee8ed1f47ca6604b2e201b6e52b15af63.zip
Merge pull request #47678 from nextcloud/chore/add-typings
chore(IConfig): Adjust type of `getUsersForUserValue`
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/IConfig.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/public/IConfig.php b/lib/public/IConfig.php
index b322267736e..3bc64c5e133 100644
--- a/lib/public/IConfig.php
+++ b/lib/public/IConfig.php
@@ -245,7 +245,8 @@ interface IConfig {
* @param string $appName the app to get the user for
* @param string $key the key to get the user for
* @param string $value the value to get the user for
- * @return array of user IDs
+ * @return list<string> of user IDs
+ * @since 31.0.0 return type of `list<string>`
* @since 8.0.0
*/
public function getUsersForUserValue($appName, $key, $value);