From 55688b1d1e21270aaffd27a36427be95db9147d6 Mon Sep 17 00:00:00 2001 From: mhv666 Date: Fri, 4 Apr 2025 11:22:06 +0200 Subject: [PATCH] Update SetupBrokerCommand.php FIX: add name to avoid getting error, Can not have an empty name --- src/Command/SetupBrokerCommand.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/Command/SetupBrokerCommand.php b/src/Command/SetupBrokerCommand.php index c5ece7f..6b03dd1 100644 --- a/src/Command/SetupBrokerCommand.php +++ b/src/Command/SetupBrokerCommand.php @@ -10,4 +10,11 @@ public function __construct(SimpleClient $client) { parent::__construct($client->getDriver()); } -} \ No newline at end of file + + protected function configure() + { + parent::configure(); + + $this->setName('enqueue:setup-broker'); + } +}