|
5 | 5 | use Cake\Console\CommandCollection;
|
6 | 6 | use Cake\Core\BasePlugin;
|
7 | 7 | use Cake\Routing\RouteBuilder;
|
| 8 | +use Setup\Command\CliTestCommand; |
8 | 9 | use Setup\Command\CurrentConfigConfigureCommand;
|
9 | 10 | use Setup\Command\CurrentConfigDisplayCommand;
|
10 | 11 | use Setup\Command\CurrentConfigPhpinfoCommand;
|
|
16 | 17 | use Setup\Command\DbIntegrityIntsCommand;
|
17 | 18 | use Setup\Command\DbIntegrityKeysCommand;
|
18 | 19 | use Setup\Command\DbIntegrityNullsCommand;
|
| 20 | +use Setup\Command\MailCheckCommand; |
19 | 21 | use Setup\Command\MaintenanceModeActivateCommand;
|
20 | 22 | use Setup\Command\MaintenanceModeDeactivateCommand;
|
21 | 23 | use Setup\Command\MaintenanceModeStatusCommand;
|
22 | 24 | use Setup\Command\MaintenanceModeWhitelistCommand;
|
| 25 | +use Setup\Command\ResetCommand; |
23 | 26 | use Setup\Command\UserCreateCommand;
|
24 | 27 | use Setup\Command\UserUpdateCommand;
|
25 | 28 |
|
@@ -61,6 +64,10 @@ public function console(CommandCollection $commands): CommandCollection {
|
61 | 64 | $commands->add('user create', UserCreateCommand::class);
|
62 | 65 | $commands->add('user update', UserUpdateCommand::class);
|
63 | 66 |
|
| 67 | + $commands->add('reset', ResetCommand::class); |
| 68 | + $commands->add('mail_check', MailCheckCommand::class); |
| 69 | + $commands->add('cli_test', CliTestCommand::class); |
| 70 | + |
64 | 71 | return $commands;
|
65 | 72 | }
|
66 | 73 |
|
|
0 commit comments