Browse Source

Merge pull request #45229 from nextcloud/backport/45219/stable27

[stable27] fix(userstatus): Fix docs of user status manager
tags/v27.1.10rc1
Joas Schilling 1 month ago
parent
commit
e494f6b465
No account linked to committer's email address
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      lib/public/UserStatus/IManager.php
  2. 1
    1
      lib/public/UserStatus/IProvider.php

+ 1
- 1
lib/public/UserStatus/IManager.php View File

* Gets the statuses for all users in $users * Gets the statuses for all users in $users
* *
* @param string[] $userIds * @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 * @since 20.0.0
*/ */
public function getUserStatuses(array $userIds): array; public function getUserStatuses(array $userIds): array;

+ 1
- 1
lib/public/UserStatus/IProvider.php View File

* Gets the statuses for all users in $users * Gets the statuses for all users in $users
* *
* @param string[] $userIds * @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 * @since 20.0.0
*/ */
public function getUserStatuses(array $userIds):array; public function getUserStatuses(array $userIds):array;

Loading…
Cancel
Save