mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 00:02:54 -04:00
Merge pull request #45231 from nextcloud/backport/45219/stable29
[stable29] fix(userstatus): Fix docs of user status manager
This commit is contained in:
commit
2c659a2517
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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue