diff --git a/console/Command.php b/console/Command.php index b3936fcdc7..19910cc850 100644 --- a/console/Command.php +++ b/console/Command.php @@ -247,7 +247,7 @@ public function in($prompt = null, array $options = array()) { * * {{{ * ------- - * Lihtium + * Lithium * ------- * }}} * @@ -420,4 +420,4 @@ protected function _response($type, $string, $options) { } } -?> \ No newline at end of file +?> diff --git a/console/Response.php b/console/Response.php index a215755f50..22dd479e29 100644 --- a/console/Response.php +++ b/console/Response.php @@ -124,7 +124,8 @@ public function styles($styles = array()) { 'option' => "\033[0;35m", 'command' => "\033[0;35m", 'error' => "\033[0;31m", - 'success' => "\033[0;32m" + 'success' => "\033[0;32m", + 'bold' => "\033[1m", ); if ($styles === false) { return array_combine(array_keys($defaults), array_pad(array(), count($defaults), null)); diff --git a/console/command/Help.php b/console/command/Help.php index 33bc97d07b..9d87c15bac 100644 --- a/console/command/Help.php +++ b/console/command/Help.php @@ -163,7 +163,7 @@ protected function _methods($class, $options = array()) { $comment = Docblock::comment($method['docComment']); $name = $method['name']; - $description = $comment['description']; + $description = trim($comment['description'] . PHP_EOL . $comment['text']); $args = $method['args']; $return = null; @@ -321,4 +321,4 @@ protected function _pad($message, $level = 1) { } } -?> \ No newline at end of file +?>