Skip to content

Commit

Permalink
More corrections around Console bin
Browse files Browse the repository at this point in the history
  • Loading branch information
euromark committed Sep 4, 2014
1 parent ca38833 commit ce04d72
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/Console/ShellDispatcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@
/**
* Shell dispatcher handles dispatching cli commands.
*
* Consult https://github.com/cakephp/app/tree/master/App/Console/cake.php
* for how this class is used in practice.
* Consult /bin/cake.php for how this class is used in practice.
*/
class ShellDispatcher {

Expand Down
4 changes: 2 additions & 2 deletions src/Shell/Task/TestTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public function outputTypeChoices() {
$this->out(++$i . '. ' . $option);
}
$this->out('');
$this->out('Re-run your command as Console/cake bake <type> <classname>');
$this->out('Re-run your command as `cake bake <type> <classname>`');
}

/**
Expand All @@ -142,7 +142,7 @@ public function outputClassChoices($type) {
$this->out(++$i . '. ' . $option);
}
$this->out('');
$this->out('Re-run your command as Console/cake bake ' . $type . ' <classname>');
$this->out('Re-run your command as `cake bake ' . $type . ' <classname>`');
}

/**
Expand Down

0 comments on commit ce04d72

Please sign in to comment.