diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-09-02 12:25:28 +0200 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-09-02 12:27:06 +0200 |
commit | bdce5921f6d21b8fc583aac3d2e36e8f6ce9a98a (patch) | |
tree | 5cb35e6c7ae39b99ce68c792b7176c7f7bfcefa1 /lib/private/AllConfig.php | |
parent | dc86ccf074c73c56ccd7995637880336dd372799 (diff) | |
download | nextcloud-server-bdce5921f6d21b8fc583aac3d2e36e8f6ce9a98a.tar.gz nextcloud-server-bdce5921f6d21b8fc583aac3d2e36e8f6ce9a98a.zip |
chore(IConfig): `getUsersForUserValue` is returning a list
It is returning a list of strings so adjust the return typing
to reflect this (`list<string>` instead of `array`).
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'lib/private/AllConfig.php')
-rw-r--r-- | lib/private/AllConfig.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/AllConfig.php b/lib/private/AllConfig.php index cc3a3ad90d4..263b5283133 100644 --- a/lib/private/AllConfig.php +++ b/lib/private/AllConfig.php @@ -462,7 +462,7 @@ class AllConfig implements 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 */ public function getUsersForUserValue($appName, $key, $value) { // TODO - FIXME @@ -496,7 +496,7 @@ class AllConfig implements 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 */ public function getUsersForUserValueCaseInsensitive($appName, $key, $value) { // TODO - FIXME |