lithium\console\command\Help::_renderDescription()
Output the formatted command description.
Parameters
-
array
$info
Info from inspecting the class of the command.
Returns
voidSource
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), 2);
}