fix(userstatus): Fix docs of user status manager

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling
2024-05-07 14:31:28 +02:00
parent 6fc2c47a26
commit 02ebbfb4ea
2 changed files with 2 additions and 2 deletions

View File

@@ -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;

View File

@@ -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;