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));
    }