X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=maintenance%2Fterm%2FMWTerm.php;h=d90d06956ea3ab184b4c92d06eb303a7d77d38b8;hb=34284d0195a61bdfcf9c13cfe83833845768bc8e;hp=1cb97f971c4027f62c07e19a679a493239c8ef5d;hpb=5e2ac408f888043b3c62a42b5c9c9ece5ddaf419;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/term/MWTerm.php b/maintenance/term/MWTerm.php index 1cb97f971c..d90d06956e 100644 --- a/maintenance/term/MWTerm.php +++ b/maintenance/term/MWTerm.php @@ -35,8 +35,8 @@ class AnsiTermColorer { /** * Return ANSI terminal escape code for changing text attribs/color * - * @param $color String: semicolon-separated list of attribute/color codes - * @return String + * @param string $color Semicolon-separated list of attribute/color codes + * @return string */ public function color( $color ) { global $wgCommandLineDarkBg; @@ -49,7 +49,7 @@ class AnsiTermColorer { /** * Return ANSI terminal escape code for restoring default text attributes * - * @return String + * @return string */ public function reset() { return $this->color( 0 ); @@ -70,4 +70,3 @@ class DummyTermColorer { return ''; } } -