Skip to content

Commit

Permalink
Removing the old help method.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Oct 18, 2010
1 parent 529527a commit 01b1fb8
Showing 1 changed file with 1 addition and 25 deletions.
26 changes: 1 addition & 25 deletions cake/console/shells/tasks/plugin.php
Expand Up @@ -208,29 +208,5 @@ public function getOptionParser() {
));

}
/**
* Help
*
* @return void
*/
public function help() {
$this->hr();
$this->out("Usage: cake bake plugin <arg1> <arg2>...");
$this->hr();
$this->out('Commands:');
$this->out();
$this->out("plugin <name>");
$this->out("\tbakes plugin directory structure");
$this->out();
$this->out("plugin <name> model");
$this->out("\tbakes model. Run 'cake bake model help' for more info.");
$this->out();
$this->out("plugin <name> controller");
$this->out("\tbakes controller. Run 'cake bake controller help' for more info.");
$this->out();
$this->out("plugin <name> view");
$this->out("\tbakes view. Run 'cake bake view help' for more info.");
$this->out();
$this->_stop();
}

}

0 comments on commit 01b1fb8

Please sign in to comment.