aboutsummaryrefslogtreecommitdiffstats
path: root/maintenance/term/MWTerm.php
diff options
context:
space:
mode:
authorTim Starling <tstarling@wikimedia.org>2017-12-01 21:02:26 +1100
committerTim Starling <tstarling@wikimedia.org>2017-12-04 11:11:52 +1100
commitdc2948d76d67ceac9595b7f86b3d5694b5c0e69d (patch)
tree7cea4ff18c92d5f819c7d056df665d455ac5dbc1 /maintenance/term/MWTerm.php
parenta22c3b07620f51003a38330b0ae49baf6d87ab60 (diff)
downloadmediawikicore-dc2948d76d67ceac9595b7f86b3d5694b5c0e69d.tar.gz
mediawikicore-dc2948d76d67ceac9595b7f86b3d5694b5c0e69d.zip
A few doc comment fixups
* Remove some creation dates, they are not protected by GPL * Remove duplicate @defgroup API * Remove @ingroup from some @file doc comments on class files. It is not useful to list class files alongside classes in the doxygen module menu. Add @ingroup to some more class files that had @ingroup on their file, that was probably the author's intent. * In PackedOverlayImageGallery, use the file comment as a class comment * Don't put @defgroup and @file in the same comment. @defgroup makes the whole doc comment describe the group. * Instead of putting AnsiTermColorer in two groups, use hierarchical groups. Change-Id: If54f6e0b2bc1ea6de42045885cf836ee67b8e961
Diffstat (limited to 'maintenance/term/MWTerm.php')
-rw-r--r--maintenance/term/MWTerm.php12
1 files changed, 10 insertions, 2 deletions
diff --git a/maintenance/term/MWTerm.php b/maintenance/term/MWTerm.php
index d90d06956ea3..ec8aeb0162b5 100644
--- a/maintenance/term/MWTerm.php
+++ b/maintenance/term/MWTerm.php
@@ -20,13 +20,21 @@
*
* @file
* @ingroup Maintenance Testing
+ */
+
+/**
+ * @defgroup TermColorer TermColorer
+ * @ingroup Maintenance Testing
* @todo Fixme: Make this more generic
+ *
+ * Set of classes to help with test output and such. Right now pretty specific
+ * to the parser tests but could be more useful one day :)
*/
/**
* Terminal that supports ANSI escape sequences.
*
- * @ingroup Maintenance Testing
+ * @ingroup TermColorer
*/
class AnsiTermColorer {
function __construct() {
@@ -59,7 +67,7 @@ class AnsiTermColorer {
/**
* A colour-less terminal
*
- * @ingroup Maintenance Testing
+ * @ingroup TermColorer
*/
class DummyTermColorer {
public function color( $color ) {