lithium\console\command\Help::_renderDescription PHP 메소드

_renderDescription() 보호된 메소드

Output the formatted command description.
protected _renderDescription ( array $info ) : void
$info array Info from inspecting the class of the command.
리턴 void
    protected function _renderDescription($info)
    {
        $this->out('DESCRIPTION', 'heading');
        $break = PHP_EOL . PHP_EOL;
        $description = trim("{$info['description']}{$break}{$info['text']}");
        $this->out($this->_pad($description, PHP_EOL));
    }