From 0f08a59b7fe0972fd967e74e64ba2fbe2d5004a9 Mon Sep 17 00:00:00 2001 From: Christian CECONI Date: Wed, 12 Feb 2025 17:06:23 +0100 Subject: [PATCH 1/2] Update ConfigurableConsumeCommand.php Delete bad comma at the end of constructor --- Symfony/Consumption/ConfigurableConsumeCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Symfony/Consumption/ConfigurableConsumeCommand.php b/Symfony/Consumption/ConfigurableConsumeCommand.php index 230a0dc..6424233 100644 --- a/Symfony/Consumption/ConfigurableConsumeCommand.php +++ b/Symfony/Consumption/ConfigurableConsumeCommand.php @@ -46,7 +46,7 @@ public function __construct( ContainerInterface $container, string $defaultTransport, string $queueConsumerIdPattern = 'enqueue.transport.%s.queue_consumer', - string $processorRegistryIdPattern = 'enqueue.transport.%s.processor_registry', + string $processorRegistryIdPattern = 'enqueue.transport.%s.processor_registry' ) { $this->container = $container; $this->defaultTransport = $defaultTransport; From 9f8fef4c2113268406f347fe3bcfebe154519324 Mon Sep 17 00:00:00 2001 From: Christian CECONI Date: Wed, 12 Feb 2025 17:07:33 +0100 Subject: [PATCH 2/2] Update ConsumeCommand.php Delete bad comma at the end of constructor --- Symfony/Client/ConsumeCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Symfony/Client/ConsumeCommand.php b/Symfony/Client/ConsumeCommand.php index 5a06767..2d145b9 100644 --- a/Symfony/Client/ConsumeCommand.php +++ b/Symfony/Client/ConsumeCommand.php @@ -58,7 +58,7 @@ public function __construct( string $defaultClient, string $queueConsumerIdPattern = 'enqueue.client.%s.queue_consumer', string $driverIdPattern = 'enqueue.client.%s.driver', - string $processorIdPatter = 'enqueue.client.%s.delegate_processor', + string $processorIdPatter = 'enqueue.client.%s.delegate_processor' ) { $this->container = $container; $this->defaultClient = $defaultClient;