From: Alexandre Emsenhuber Date: Sun, 4 Oct 2009 21:21:30 +0000 (+0000) Subject: fix some doxygen warnings X-Git-Tag: 1.31.0-rc.0~39391 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=b4b89afea3a28f4c1ce59679f64c201284650614;p=lhc%2Fweb%2Fwiklou.git fix some doxygen warnings --- diff --git a/includes/Export.php b/includes/Export.php index 645ff4a308..c33ff42cd4 100644 --- a/includes/Export.php +++ b/includes/Export.php @@ -55,6 +55,7 @@ class WikiExporter { * limit: maximum number of rows to return * dir: "asc" or "desc" timestamp order * @param $buffer Int: one of WikiExporter::BUFFER or WikiExporter::STREAM + * @param $text Int: one of WikiExporter::TEXT or WikiExporter::STUB */ function __construct( &$db, $history = WikiExporter::CURRENT, $buffer = WikiExporter::BUFFER, $text = WikiExporter::TEXT ) { diff --git a/includes/Import.php b/includes/Import.php index 973866df22..e82eede976 100644 --- a/includes/Import.php +++ b/includes/Import.php @@ -554,7 +554,7 @@ class WikiImporter { /** * Default per-revision callback, performs the import. - * @param $revision WikiRevision + * @param $rev WikiRevision * @private */ function importLogItem( $rev ) { diff --git a/includes/QueryPage.php b/includes/QueryPage.php index 8111c54cc3..9d89ac3ea4 100644 --- a/includes/QueryPage.php +++ b/includes/QueryPage.php @@ -606,9 +606,9 @@ abstract class WantedQueryPage extends QueryPage { /** * Make a "what links here" link for a given title * - * @param Title $title Title to make the link for - * @param Skin $skin Skin to use - * @param object $result Result row + * @param $title Title to make the link for + * @param $skin Skin object to use + * @param $result Object: result row * @return string */ private function makeWlhLink( $title, $skin, $result ) { diff --git a/includes/Xml.php b/includes/Xml.php index 380c56a778..9466e08e28 100644 --- a/includes/Xml.php +++ b/includes/Xml.php @@ -714,6 +714,7 @@ class Xml { /** * Build a row for a table + * @param $attribs An array of attributes to apply to the tr tag * @param $cells An array of strings to put in * @return string */ diff --git a/includes/specials/SpecialListusers.php b/includes/specials/SpecialListusers.php index bb52ee6f67..8d9213a7c4 100644 --- a/includes/specials/SpecialListusers.php +++ b/includes/specials/SpecialListusers.php @@ -241,7 +241,7 @@ class UsersPager extends AlphabeticPager { /** * Get a list of groups the specified user belongs to * - * @param int $uid + * @param $uid Integer: user id * @return array */ protected static function getGroups( $uid ) { @@ -253,7 +253,7 @@ class UsersPager extends AlphabeticPager { /** * Format a link to a group description page * - * @param string $group + * @param $group String: group name * @return string */ protected static function buildGroupLink( $group ) {