adding help info for bake connection parameter, closes #1679

This commit is contained in:
Ceeram 2011-05-06 17:13:15 +02:00
parent 1f473f5bcd
commit 5329c188d6
2 changed files with 10 additions and 0 deletions

View file

@ -454,6 +454,11 @@ class ControllerTask extends BakeTask {
$this->out("\tName of the controller to bake. Can use Plugin.name");
$this->out("\tas a shortcut for plugin baking.");
$this->out();
$this->out('Params:');
$this->out();
$this->out('-connection <config>');
$this->out("\tset db config <config>. uses 'default' if none is specified");
$this->out();
$this->out('Commands:');
$this->out();
$this->out("controller <name>");

View file

@ -898,6 +898,11 @@ class ModelTask extends BakeTask {
$this->out("\tName of the model to bake. Can use Plugin.name");
$this->out("\tas a shortcut for plugin baking.");
$this->out();
$this->out('Params:');
$this->out();
$this->out('-connection <config>');
$this->out("\tset db config <config>. uses 'default' if none is specified");
$this->out();
$this->out('Commands:');
$this->out();
$this->out("model");