Merge pull request #45219 from nextcloud/bugfix/noid/fix-user-status-manager-docs

fix(userstatus): Fix docs of user status manager
pull/43660/head
Joas Schilling 2024-05-08 09:23:54 +07:00 committed by GitHub
commit 72470e33be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

@ -39,7 +39,7 @@ interface IManager {
* Gets the statuses for all users in $users
*
* @param string[] $userIds
* @return IUserStatus[]
* @return array<string, IUserStatus> array key being the userid, users without a status will not be in the returned array
* @since 20.0.0
*/
public function getUserStatuses(array $userIds): array;

@ -35,7 +35,7 @@ interface IProvider {
* Gets the statuses for all users in $users
*
* @param string[] $userIds
* @return IUserStatus[]
* @return array<string, IUserStatus> array key being the userid, users without a status will not be in the returned array
* @since 20.0.0
*/
public function getUserStatuses(array $userIds):array;