Skip to content

Commit c9e93bf

Browse files
committed
Fix comments
[ci skip]
1 parent 30174a4 commit c9e93bf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

config/Common.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
class Common extends Config
1818
{
1919
/**
20-
* @var array list of system commands
20+
* @var array list of built-in commands
2121
*/
2222
private $commands = [
2323
'Seed', 'Migrate', 'Generate', 'Run',
@@ -32,7 +32,7 @@ public function define(Container $di)
3232
/* @var $ci \CI_Controller */
3333
$ci =& get_instance();
3434

35-
// register system command classes
35+
// register built-in command classes
3636
foreach ($this->commands as $command) {
3737
$class = 'Kenjis\CodeIgniter_Cli\Command\\' . $command;
3838
$di->params[$class] = [
@@ -80,7 +80,7 @@ protected function modifyCliDispatcherAndHelp(Container $di)
8080
$dispatcher = $di->get('aura/cli-kernel:dispatcher');
8181
$help_service = $di->get('aura/cli-kernel:help_service');
8282

83-
// register system commands
83+
// register built-in commands
8484
foreach ($this->commands as $command) {
8585
$class = 'Kenjis\CodeIgniter_Cli\Command\\' . $command;
8686
$command_name = strtolower($command);
@@ -96,7 +96,7 @@ protected function modifyCliDispatcherAndHelp(Container $di)
9696
);
9797
}
9898

99-
// register user commands
99+
// register user commands
100100
UserConfig::registerCommands(
101101
$di, $dispatcher, $help_service, $this->user_command_paths
102102
);

0 commit comments

Comments
 (0)