File tree Expand file tree Collapse file tree 5 files changed +12
-12
lines changed Expand file tree Collapse file tree 5 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ public function main() {
85
85
$ this ->out ('- ' . Inflector::underscore ($ name ));
86
86
}
87
87
$ this ->out ('' );
88
- $ this ->out ('By using <info>Console/ cake bake [name]</info> you can invoke a specific bake task. ' );
88
+ $ this ->out ('By using <info>` cake bake [name]` </info> you can invoke a specific bake task. ' );
89
89
}
90
90
91
91
/**
@@ -205,7 +205,7 @@ public function all($name = null) {
205
205
foreach ($ this ->Model ->listAll () as $ table ) {
206
206
$ this ->out ('- ' . $ table );
207
207
}
208
- $ this ->out ('Run <info>cake bake all [name]</info> to generate skeleton files. ' );
208
+ $ this ->out ('Run <info>` cake bake all [name]` </info> to generate skeleton files. ' );
209
209
return false ;
210
210
}
211
211
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ public function startup() {
51
51
public function main () {
52
52
if (empty ($ this ->params ['xml ' ])) {
53
53
$ this ->out ("<info>Current Paths:</info> " , 2 );
54
- $ this ->out ("* app: " . APP_DIR );
54
+ $ this ->out ("* app: " . APP_DIR );
55
55
$ this ->out ("* root: " . rtrim (ROOT , DS ));
56
56
$ this ->out ("* core: " . rtrim (CORE_PATH , DS ));
57
57
$ this ->out ("" );
@@ -84,9 +84,9 @@ protected function _asText($shellList) {
84
84
$ this ->out ();
85
85
}
86
86
87
- $ this ->out ("To run an app or core command, type <info>cake shell_name [args]</info> " );
88
- $ this ->out ("To run a plugin command, type <info>cake Plugin.shell_name [args]</info> " );
89
- $ this ->out ("To get help on a specific command, type <info>cake shell_name --help</info> " , 2 );
87
+ $ this ->out ("To run an app or core command, type <info>` cake shell_name [args]` </info> " );
88
+ $ this ->out ("To run a plugin command, type <info>` cake Plugin.shell_name [args]` </info> " );
89
+ $ this ->out ("To get help on a specific command, type <info>` cake shell_name --help` </info> " , 2 );
90
90
}
91
91
92
92
/**
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ public function main() {
132
132
133
133
$ port = ': ' . $ this ->_port ;
134
134
$ this ->out (sprintf ('built-in server is running in http://%s%s/ ' , $ this ->_host , $ port ));
135
- $ this ->out (sprintf ('You can exit with <info>CTRL-C</info> ' ));
135
+ $ this ->out (sprintf ('You can exit with <info>` CTRL-C` </info> ' ));
136
136
system ($ command );
137
137
}
138
138
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ public function initialize() {
59
59
public function main ($ name = null ) {
60
60
if (empty ($ name )) {
61
61
$ this ->err ('<error>You must provide a plugin name in CamelCase format.</error> ' );
62
- $ this ->err ('To make an "Example" plugin, run <info>Console/ cake bake plugin Example</info>. ' );
62
+ $ this ->err ('To make an "Example" plugin, run <info>` cake bake plugin Example` </info>. ' );
63
63
return false ;
64
64
}
65
65
$ plugin = $ this ->_camelize ($ name );
Original file line number Diff line number Diff line change @@ -58,12 +58,12 @@ public function available() {
58
58
* @return void
59
59
*/
60
60
public function outputWarning () {
61
- $ this ->err ('<error>Test Shell has been removed.</error> ' );
61
+ $ this ->err ('<error>TestShell has been removed.</error> ' );
62
62
$ this ->err ('' );
63
- $ this ->err ('TestShell has been removed and replaced with <info>phpunit</info>. ' );
63
+ $ this ->err ('TestShell has been replaced with <info>` phpunit` </info>. ' );
64
64
$ this ->err ('' );
65
- $ this ->err ('To run your application tests run <info>phpunit</info> ' );
66
- $ this ->err ('To run plugin tests, cd into the plugin directory and run <info>phpunit</info> ' );
65
+ $ this ->err ('To run your application tests run <info>` phpunit` </info> ' );
66
+ $ this ->err ('To run plugin tests, cd into the plugin directory and run <info>` phpunit` </info> ' );
67
67
}
68
68
69
69
}
You can’t perform that action at this time.
0 commit comments