Components_Output::green PHP Method

green() public method

public green ( $text )
    public function green($text)
    {
        if ($this->_nocolor) {
            $this->_cli->writeln($text);
        } else {
            $this->_cli->writeln($this->_cli->green($text));
        }
    }