aboutsummaryrefslogtreecommitdiffstats
path: root/includes/api/ApiQueryRecentChanges.php
diff options
context:
space:
mode:
authorNick Jenkins <nickj@users.mediawiki.org>2007-04-20 08:55:14 +0000
committerNick Jenkins <nickj@users.mediawiki.org>2007-04-20 08:55:14 +0000
commitf9619da3f02b4759ae92250c483d4bf14dfd9ee8 (patch)
tree699d3b4bd1d6695411f29b89d95d2ce597ea283f /includes/api/ApiQueryRecentChanges.php
parent4e7247417065448c22558eb8cdfc02cababbc951 (diff)
downloadmediawikicore-f9619da3f02b4759ae92250c483d4bf14dfd9ee8.tar.gz
mediawikicore-f9619da3f02b4759ae92250c483d4bf14dfd9ee8.zip
Yet more doc tweaks:
* Add @addtogroup tags to various classes, to try and group conceptually-related classes together. * Add brief descriptions to various Special pages, thanks to Phil Boswell. * Moving some docs to be right above the classes they represent, so that they are picked up.
Notes
Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/21402
Diffstat (limited to 'includes/api/ApiQueryRecentChanges.php')
-rw-r--r--includes/api/ApiQueryRecentChanges.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/includes/api/ApiQueryRecentChanges.php b/includes/api/ApiQueryRecentChanges.php
index b1cf4102f87c..cec0fb5e4621 100644
--- a/includes/api/ApiQueryRecentChanges.php
+++ b/includes/api/ApiQueryRecentChanges.php
@@ -1,6 +1,5 @@
<?php
-
/*
* Created on Oct 19, 2006
*
@@ -29,6 +28,9 @@ if (!defined('MEDIAWIKI')) {
require_once ('ApiQueryBase.php');
}
+/**
+ * @addtogroup API
+ */
class ApiQueryRecentChanges extends ApiQueryBase {
public function __construct($query, $moduleName) {
@@ -184,4 +186,4 @@ class ApiQueryRecentChanges extends ApiQueryBase {
return __CLASS__ . ': $Id$';
}
}
-?> \ No newline at end of file
+?>