fix some doxygen warnings
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sun, 4 Oct 2009 21:21:30 +0000 (21:21 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sun, 4 Oct 2009 21:21:30 +0000 (21:21 +0000)
includes/Export.php
includes/Import.php
includes/QueryPage.php
includes/Xml.php
includes/specials/SpecialListusers.php

index 645ff4a..c33ff42 100644 (file)
@@ -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 ) {
index 973866d..e82eede 100644 (file)
@@ -554,7 +554,7 @@ class WikiImporter {
        
        /**
         * Default per-revision callback, performs the import.
-        * @param $revision WikiRevision
+        * @param $rev WikiRevision
         * @private
         */
        function importLogItem( $rev ) {
index 8111c54..9d89ac3 100644 (file)
@@ -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 ) {
index 380c56a..9466e08 100644 (file)
@@ -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 <td>
         * @return string
         */
index bb52ee6..8d9213a 100644 (file)
@@ -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 ) {