X-Git-Url: https://git.cyclocoop.org/%242?a=blobdiff_plain;f=includes%2Fspecials%2Fpagers%2FUsersPager.php;h=4efe92d74392115b5f79b0966edb38327a6970b7;hb=ef470ebf7f7716c2c1a20960d642a1d898231f6a;hp=a68fe668815253a88d0953797c3ad8df1c797863;hpb=5256bb8ce2da1390f84ef535d990129eebd74fd2;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/specials/pagers/UsersPager.php b/includes/specials/pagers/UsersPager.php index a68fe66881..4efe92d743 100644 --- a/includes/specials/pagers/UsersPager.php +++ b/includes/specials/pagers/UsersPager.php @@ -33,7 +33,7 @@ class UsersPager extends AlphabeticPager { /** - * @var array A array with user ids as key and a array of groups as value + * @var array[] A array with user ids as key and a array of groups as value */ protected $userGroupCache; @@ -391,8 +391,8 @@ class UsersPager extends AlphabeticPager { * and the relevant UserGroupMembership objects * * @param int $uid User id - * @param array|null $cache - * @return array (group name => UserGroupMembership object) + * @param array[]|null $cache + * @return UserGroupMembership[] (group name => UserGroupMembership object) */ protected static function getGroupMemberships( $uid, $cache = null ) { if ( $cache === null ) { @@ -407,7 +407,7 @@ class UsersPager extends AlphabeticPager { * Format a link to a group description page * * @param string|UserGroupMembership $group Group name or UserGroupMembership object - * @param string $username Username + * @param string $username * @return string */ protected function buildGroupLink( $group, $username ) {