Merge "Drop parenthesis from no/nb/nn to match CLDR"
[lhc/web/wiklou.git] / maintenance / term / MWTerm.php
index ca0f95d..c52f07c 100644 (file)
  * 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 '';
        }
 }
-