/**
  * @param string $text
  * @param array $arguments
  * @param string $color
  * @return void
  */
 public function outputLine($text = '', array $arguments = array(), $color = NULL)
 {
     if ($color !== NULL) {
         $text = sprintf("[%sm%s", $color, $text);
     }
     parent::outputLine($text, $arguments);
 }