Skip to content

Commit 10b3e4f

Browse files
committed
Fixes CLI
1 parent 9246d20 commit 10b3e4f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/SetupPlugin.php

+7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
use Cake\Console\CommandCollection;
66
use Cake\Core\BasePlugin;
77
use Cake\Routing\RouteBuilder;
8+
use Setup\Command\CliTestCommand;
89
use Setup\Command\CurrentConfigConfigureCommand;
910
use Setup\Command\CurrentConfigDisplayCommand;
1011
use Setup\Command\CurrentConfigPhpinfoCommand;
@@ -16,10 +17,12 @@
1617
use Setup\Command\DbIntegrityIntsCommand;
1718
use Setup\Command\DbIntegrityKeysCommand;
1819
use Setup\Command\DbIntegrityNullsCommand;
20+
use Setup\Command\MailCheckCommand;
1921
use Setup\Command\MaintenanceModeActivateCommand;
2022
use Setup\Command\MaintenanceModeDeactivateCommand;
2123
use Setup\Command\MaintenanceModeStatusCommand;
2224
use Setup\Command\MaintenanceModeWhitelistCommand;
25+
use Setup\Command\ResetCommand;
2326
use Setup\Command\UserCreateCommand;
2427
use Setup\Command\UserUpdateCommand;
2528

@@ -61,6 +64,10 @@ public function console(CommandCollection $commands): CommandCollection {
6164
$commands->add('user create', UserCreateCommand::class);
6265
$commands->add('user update', UserUpdateCommand::class);
6366

67+
$commands->add('reset', ResetCommand::class);
68+
$commands->add('mail_check', MailCheckCommand::class);
69+
$commands->add('cli_test', CliTestCommand::class);
70+
6471
return $commands;
6572
}
6673

0 commit comments

Comments
 (0)