Skip to content

Commit 370b303

Browse files
committed
fix code style
1 parent c6a6db2 commit 370b303

6 files changed

+8
-8
lines changed

Symfony/Client/ConsumeCommand.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,15 @@ public function __construct(
5858
string $defaultClient,
5959
string $queueConsumerIdPattern = 'enqueue.client.%s.queue_consumer',
6060
string $driverIdPattern = 'enqueue.client.%s.driver',
61-
string $processorIdPatter = 'enqueue.client.%s.delegate_processor'
61+
string $processorIdPatter = 'enqueue.client.%s.delegate_processor',
6262
) {
6363
$this->container = $container;
6464
$this->defaultClient = $defaultClient;
6565
$this->queueConsumerIdPattern = $queueConsumerIdPattern;
6666
$this->driverIdPattern = $driverIdPattern;
6767
$this->processorIdPattern = $processorIdPatter;
6868

69-
parent::__construct(self::$defaultName);
69+
parent::__construct();
7070
}
7171

7272
protected function configure(): void

Symfony/Client/ProduceCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function __construct(ContainerInterface $container, string $defaultClient
3737
$this->defaultClient = $defaultClient;
3838
$this->producerIdPattern = $producerIdPattern;
3939

40-
parent::__construct(static::$defaultName);
40+
parent::__construct();
4141
}
4242

4343
protected function configure(): void

Symfony/Client/RoutesCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public function __construct(ContainerInterface $container, string $defaultClient
4343
$this->defaultClient = $defaultClient;
4444
$this->driverIdPatter = $driverIdPatter;
4545

46-
parent::__construct(static::$defaultName);
46+
parent::__construct();
4747
}
4848

4949
protected function configure(): void

Symfony/Client/SetupBrokerCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function __construct(ContainerInterface $container, string $defaultClient
3636
$this->defaultClient = $defaultClient;
3737
$this->driverIdPattern = $driverIdPattern;
3838

39-
parent::__construct(static::$defaultName);
39+
parent::__construct();
4040
}
4141

4242
protected function configure(): void

Symfony/Consumption/ConfigurableConsumeCommand.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@ public function __construct(
4646
ContainerInterface $container,
4747
string $defaultTransport,
4848
string $queueConsumerIdPattern = 'enqueue.transport.%s.queue_consumer',
49-
string $processorRegistryIdPattern = 'enqueue.transport.%s.processor_registry'
49+
string $processorRegistryIdPattern = 'enqueue.transport.%s.processor_registry',
5050
) {
5151
$this->container = $container;
5252
$this->defaultTransport = $defaultTransport;
5353
$this->queueConsumerIdPattern = $queueConsumerIdPattern;
5454
$this->processorRegistryIdPattern = $processorRegistryIdPattern;
5555

56-
parent::__construct(static::$defaultName);
56+
parent::__construct();
5757
}
5858

5959
protected function configure(): void

Symfony/Consumption/ConsumeCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function __construct(ContainerInterface $container, string $defaultTransp
4141
$this->defaultTransport = $defaultTransport;
4242
$this->queueConsumerIdPattern = $queueConsumerIdPattern;
4343

44-
parent::__construct(static::$defaultName);
44+
parent::__construct();
4545
}
4646

4747
protected function configure(): void

0 commit comments

Comments
 (0)