Skip to content

Commit d7b46d4

Browse files
authored
fixed: make commands available in the app (vyuldashev#348)
- reference vyuldashev#342
1 parent edf0bf7 commit d7b46d4

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

src/LaravelQueueRabbitMQServiceProvider.php

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,18 @@ public function register(): void
4444
});
4545

4646
$this->commands([
47-
Console\ExchangeDeclareCommand::class,
48-
Console\QueueBindCommand::class,
49-
Console\QueueDeclareCommand::class,
50-
Console\QueuePurgeCommand::class,
5147
Console\ConsumeCommand::class,
5248
]);
5349
}
50+
51+
$this->commands([
52+
Console\ExchangeDeclareCommand::class,
53+
Console\ExchangeDeleteCommand::class,
54+
Console\QueueBindCommand::class,
55+
Console\QueueDeclareCommand::class,
56+
Console\QueueDeleteCommand::class,
57+
Console\QueuePurgeCommand::class,
58+
]);
5459
}
5560

5661
/**

0 commit comments

Comments
 (0)