Skip to content

Commit

Permalink
fix(userstatus): Fix docs of user status manager
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen authored and backportbot[bot] committed May 8, 2024
1 parent 2967c21 commit 1550776
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/public/UserStatus/IManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion lib/public/UserStatus/IProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 1550776

Please sign in to comment.