X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fspecials%2FSpecialListusers.php;h=367adefcb8b29c5498305ffec81c3984433c91b5;hb=1622e08767cca1f6d5a7f2a4d3afda687df29521;hp=f69e1771048e676b340c92bcf7cc9dd90d921872;hpb=8751d6a10fa15a7608a75f06bbf4c43001b4c4c9;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/specials/SpecialListusers.php b/includes/specials/SpecialListusers.php index f69e177104..367adefcb8 100644 --- a/includes/specials/SpecialListusers.php +++ b/includes/specials/SpecialListusers.php @@ -35,9 +35,9 @@ class UsersPager extends AlphabeticPager { /** - * @param $context IContextSource + * @param IContextSource $context * @param array $par (Default null) - * @param $including boolean Whether this page is being transcluded in + * @param bool $including Whether this page is being transcluded in * another page */ function __construct( IContextSource $context = null, $par = null, $including = null ) { @@ -92,7 +92,7 @@ class UsersPager extends AlphabeticPager { } /** - * @return Array + * @return array */ function getQueryInfo() { $dbr = wfGetDB( DB_SLAVE ); @@ -154,8 +154,8 @@ class UsersPager extends AlphabeticPager { } /** - * @param $row Object - * @return String + * @param stdClass $row + * @return string */ function formatRow( $row ) { if ( $row->user_id == 0 ) { #Bug 16487 @@ -333,7 +333,7 @@ class UsersPager extends AlphabeticPager { /** * Get a list of groups the specified user belongs to * - * @param $uid Integer: user id + * @param int $uid User id * @return array */ protected static function getGroups( $uid ) { @@ -346,7 +346,7 @@ class UsersPager extends AlphabeticPager { /** * Format a link to a group description page * - * @param string $group group name + * @param string $group Group name * @param string $username Username * @return string */