lithium\console\command\Help::_renderDescription()

protected method

Output the formatted command description.

Parameters

  • array $info

    Info from inspecting the class of the command.

Returns

void

Source

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