summaryrefslogtreecommitdiff
path: root/maintenance/term/MWTerm.php
diff options
context:
space:
mode:
Diffstat (limited to 'maintenance/term/MWTerm.php')
-rw-r--r--maintenance/term/MWTerm.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/maintenance/term/MWTerm.php b/maintenance/term/MWTerm.php
index ca0f95d2..c52f07cc 100644
--- a/maintenance/term/MWTerm.php
+++ b/maintenance/term/MWTerm.php
@@ -19,12 +19,14 @@
* http://www.gnu.org/copyleft/gpl.html
*
* @file
- * @ingroup Testing
+ * @ingroup Maintenance Testing
* @todo Fixme: Make this more generic
*/
/**
* Terminal that supports ANSI escape sequences.
+ *
+ * @ingroup Maintenance Testing
*/
class AnsiTermColorer {
function __construct() {
@@ -56,6 +58,8 @@ class AnsiTermColorer {
/**
* A colour-less terminal
+ *
+ * @ingroup Maintenance Testing
*/
class DummyTermColorer {
public function color( $color ) {
@@ -66,4 +70,3 @@ class DummyTermColorer {
return '';
}
}
-