From: addshore Date: Fri, 1 Apr 2016 11:28:42 +0000 (+0300) Subject: Add phpdoc and @since to SpecialUserrights::makeGroupNameList X-Git-Tag: 1.31.0-rc.0~7460^2 X-Git-Url: http://git.cyclocoop.org/ecrire?a=commitdiff_plain;h=609827a204297600ce095d51346b60ca1a573313;p=lhc%2Fweb%2Fwiklou.git Add phpdoc and @since to SpecialUserrights::makeGroupNameList Change-Id: I015a851d9fa9649ec79386071fcab2c4589f88ad --- diff --git a/includes/specials/SpecialUserrights.php b/includes/specials/SpecialUserrights.php index 740f2f7e36..a35cb52a01 100644 --- a/includes/specials/SpecialUserrights.php +++ b/includes/specials/SpecialUserrights.php @@ -417,7 +417,14 @@ class UserrightsPage extends SpecialPage { return Status::newGood( $user ); } - function makeGroupNameList( $ids ) { + /** + * @since 1.15 + * + * @param array $ids + * + * @return string + */ + public function makeGroupNameList( $ids ) { if ( empty( $ids ) ) { return $this->msg( 'rightsnone' )->inContentLanguage()->text(); } else {