|
4 | 4 |
|
5 | 5 | namespace Bow\Console; |
6 | 6 |
|
7 | | -use Bow\Console\Command\AppEventCommand; |
| 7 | +use ErrorException; |
| 8 | +use Bow\Support\Str; |
| 9 | +use Bow\Console\Command\ReplCommand; |
8 | 10 | use Bow\Console\Command\ClearCommand; |
9 | | -use Bow\Console\Command\ConfigurationCommand; |
| 11 | +use Bow\Console\Command\ModelCommand; |
| 12 | +use Bow\Console\Command\SeederCommand; |
| 13 | +use Bow\Console\Command\ServerCommand; |
| 14 | +use Bow\Console\Command\WorkerCommand; |
10 | 15 | use Bow\Console\Command\ConsoleCommand; |
| 16 | +use Bow\Console\Command\ServiceCommand; |
| 17 | +use Bow\Console\Command\AppEventCommand; |
| 18 | +use Bow\Console\Command\ProducerCommand; |
| 19 | +use Bow\Console\Command\ExceptionCommand; |
| 20 | +use Bow\Console\Command\MessagingCommand; |
| 21 | +use Bow\Console\Command\MigrationCommand; |
11 | 22 | use Bow\Console\Command\ControllerCommand; |
| 23 | +use Bow\Console\Command\MiddlewareCommand; |
| 24 | +use Bow\Console\Command\ValidationCommand; |
| 25 | +use Bow\Console\Command\GenerateKeyCommand; |
| 26 | +use Bow\Console\Command\ConfigurationCommand; |
12 | 27 | use Bow\Console\Command\EventListenerCommand; |
13 | | -use Bow\Console\Command\ExceptionCommand; |
14 | 28 | use Bow\Console\Command\GenerateCacheCommand; |
15 | | -use Bow\Console\Command\GenerateKeyCommand; |
16 | 29 | use Bow\Console\Command\GenerateQueueCommand; |
17 | | -use Bow\Console\Command\GenerateResourceControllerCommand; |
18 | 30 | use Bow\Console\Command\GenerateSessionCommand; |
19 | | -use Bow\Console\Command\MessagingCommand; |
20 | | -use Bow\Console\Command\MiddlewareCommand; |
21 | | -use Bow\Console\Command\MigrationCommand; |
22 | | -use Bow\Console\Command\ModelCommand; |
23 | | -use Bow\Console\Command\ProducerCommand; |
24 | | -use Bow\Console\Command\ReplCommand; |
25 | | -use Bow\Console\Command\SeederCommand; |
26 | | -use Bow\Console\Command\ServerCommand; |
27 | | -use Bow\Console\Command\ServiceCommand; |
28 | | -use Bow\Console\Command\ValidationCommand; |
29 | | -use Bow\Console\Command\WorkerCommand; |
30 | | -use Bow\Support\Str; |
31 | | -use ErrorException; |
| 31 | +use Bow\Console\Command\GenerateNotificationCommand; |
| 32 | +use Bow\Console\Command\GenerateResourceControllerCommand; |
32 | 33 |
|
33 | 34 | class Command extends AbstractCommand |
34 | 35 | { |
@@ -63,7 +64,7 @@ class Command extends AbstractCommand |
63 | 64 | "session-table" => GenerateSessionCommand::class, |
64 | 65 | "queue-table" => GenerateQueueCommand::class, |
65 | 66 | "cache-table" => GenerateCacheCommand::class, |
66 | | - "notification-table" => GenerateCacheCommand::class, |
| 67 | + "notification-table" => GenerateNotificationCommand::class, |
67 | 68 | ], |
68 | 69 | "runner" => [ |
69 | 70 | "console" => ReplCommand::class, |
|
0 commit comments