From: Alexandre Emsenhuber Date: Wed, 10 Mar 2010 21:17:58 +0000 (+0000) Subject: Fixed some doxygen warnings X-Git-Tag: 1.31.0-rc.0~37490 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=b4c7ddf1ead88c4c73f695a4f73985b8be1d37e9;p=lhc%2Fweb%2Fwiklou.git Fixed some doxygen warnings --- diff --git a/includes/specials/SpecialContributions.php b/includes/specials/SpecialContributions.php index 392f4332e7..47005fc801 100644 --- a/includes/specials/SpecialContributions.php +++ b/includes/specials/SpecialContributions.php @@ -140,8 +140,8 @@ class SpecialContributions extends SpecialPage { /** * Generates the subheading with links - * @param Title $nt @see Title object for the target - * @param integer $id User ID for the target + * @param $nt Title object for the target + * @param $id Integer: User ID for the target * @return String: appropriately-escaped HTML to be output literally * @todo Fixme: almost the same as getSubTitle in SpecialDeletedContributions.php. Could be combined. */ @@ -257,7 +257,7 @@ class SpecialContributions extends SpecialPage { /** * Generates the namespace selector form with hidden attributes. - * @param $this->opts Array: the options to be included. + * @return String: HTML fragment */ protected function getForm() { global $wgScript; @@ -337,7 +337,7 @@ class SpecialContributions extends SpecialPage { /** * Output a subscription feed listing recent edits to this page. - * @param string $type + * @param $type String */ protected function feed( $type ) { global $wgRequest, $wgFeed, $wgFeedClasses, $wgFeedLimit; diff --git a/includes/specials/SpecialDeletedContributions.php b/includes/specials/SpecialDeletedContributions.php index 8884bb226d..bbb100e315 100644 --- a/includes/specials/SpecialDeletedContributions.php +++ b/includes/specials/SpecialDeletedContributions.php @@ -328,8 +328,8 @@ class DeletedContributionsPage extends SpecialPage { /** * Generates the subheading with links - * @param Title $nt @see Title object for the target - * @param integer $id User ID for the target + * @param $nt Title object for the target + * @param $id Integer: User ID for the target * @return String: appropriately-escaped HTML to be output literally * @todo Fixme: almost the same as contributionsSub in SpecialContributions.php. Could be combined. */