From c6566ebda4fbcbf7e6f9a51fe84f04107d808f12 Mon Sep 17 00:00:00 2001 From: Bryan Crowe Date: Mon, 29 Sep 2014 19:19:43 -0400 Subject: [PATCH] Update BakeShell output --- src/Shell/BakeShell.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/Shell/BakeShell.php b/src/Shell/BakeShell.php index 59fce288656..c753840cf83 100644 --- a/src/Shell/BakeShell.php +++ b/src/Shell/BakeShell.php @@ -76,10 +76,9 @@ public function main() { $this->out('Add your database connection information to config/app.php.'); return false; } - $this->out('The following commands can be used to generate skeleton code for your application.'); - $this->out(''); - $this->out('Available bake commands:'); - $this->out(''); + $this->out('The following commands can be used to generate skeleton code for your application.', 2); + $this->out('Available bake commands:', 2); + $this->out('- all'); foreach ($this->tasks as $task) { list($p, $name) = pluginSplit($task); $this->out('- ' . Inflector::underscore($name)); @@ -237,7 +236,7 @@ public function getOptionParser() { ' If run with no command line arguments, Bake guides the user through the class creation process.' . ' You can customize the generation process by telling Bake where different parts of your application are using command line arguments.' )->addSubcommand('all', [ - 'help' => 'Bake a complete MVC skeleton. Optional: of a model.', + 'help' => 'Bake a complete MVC skeleton.', ])->addOption('connection', [ 'help' => 'Database connection to use in conjunction with `bake all`.', 'short' => 'c',