mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
adding help info for bake connection parameter, closes #1679
This commit is contained in:
parent
1f473f5bcd
commit
5329c188d6
2 changed files with 10 additions and 0 deletions
|
@ -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>");
|
||||
|
|
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue