Components_Output::yellow PHP Method

yellow() public method

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