diff options
author | Nick Jenkins <nickj@users.mediawiki.org> | 2007-04-20 08:55:14 +0000 |
---|---|---|
committer | Nick Jenkins <nickj@users.mediawiki.org> | 2007-04-20 08:55:14 +0000 |
commit | f9619da3f02b4759ae92250c483d4bf14dfd9ee8 (patch) | |
tree | 699d3b4bd1d6695411f29b89d95d2ce597ea283f /includes/api/ApiFormatJson.php | |
parent | 4e7247417065448c22558eb8cdfc02cababbc951 (diff) | |
download | mediawikicore-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/ApiFormatJson.php')
-rw-r--r-- | includes/api/ApiFormatJson.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/includes/api/ApiFormatJson.php b/includes/api/ApiFormatJson.php index 06dc99bbd68a..99979d207d88 100644 --- a/includes/api/ApiFormatJson.php +++ b/includes/api/ApiFormatJson.php @@ -1,6 +1,5 @@ <?php - /* * Created on Sep 19, 2006 * @@ -29,6 +28,9 @@ if (!defined('MEDIAWIKI')) { require_once ('ApiFormatBase.php'); } +/** + * @addtogroup API + */ class ApiFormatJson extends ApiFormatBase { private $mIsRaw; @@ -66,4 +68,4 @@ class ApiFormatJson extends ApiFormatBase { return __CLASS__ . ': $Id$'; } } -?>
\ No newline at end of file +?> |