Skip to content

Commit

Permalink
fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
zavitkov committed Nov 14, 2024
1 parent 828bd2f commit 4c1b0cd
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions pkg/enqueue/Symfony/Client/ConsumeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,15 @@ 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;
$this->queueConsumerIdPattern = $queueConsumerIdPattern;
$this->driverIdPattern = $driverIdPattern;
$this->processorIdPattern = $processorIdPatter;

parent::__construct(self::$defaultName);
parent::__construct();
}

protected function configure(): void
Expand Down
2 changes: 1 addition & 1 deletion pkg/enqueue/Symfony/Client/ProduceCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function __construct(ContainerInterface $container, string $defaultClient
$this->defaultClient = $defaultClient;
$this->producerIdPattern = $producerIdPattern;

parent::__construct(static::$defaultName);
parent::__construct();
}

protected function configure(): void
Expand Down
2 changes: 1 addition & 1 deletion pkg/enqueue/Symfony/Client/RoutesCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function __construct(ContainerInterface $container, string $defaultClient
$this->defaultClient = $defaultClient;
$this->driverIdPatter = $driverIdPatter;

parent::__construct(static::$defaultName);
parent::__construct();
}

protected function configure(): void
Expand Down
2 changes: 1 addition & 1 deletion pkg/enqueue/Symfony/Client/SetupBrokerCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function __construct(ContainerInterface $container, string $defaultClient
$this->defaultClient = $defaultClient;
$this->driverIdPattern = $driverIdPattern;

parent::__construct(static::$defaultName);
parent::__construct();
}

protected function configure(): void
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ 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;
$this->queueConsumerIdPattern = $queueConsumerIdPattern;
$this->processorRegistryIdPattern = $processorRegistryIdPattern;

parent::__construct(static::$defaultName);
parent::__construct();
}

protected function configure(): void
Expand Down
2 changes: 1 addition & 1 deletion pkg/enqueue/Symfony/Consumption/ConsumeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function __construct(ContainerInterface $container, string $defaultTransp
$this->defaultTransport = $defaultTransport;
$this->queueConsumerIdPattern = $queueConsumerIdPattern;

parent::__construct(static::$defaultName);
parent::__construct();
}

protected function configure(): void
Expand Down

0 comments on commit 4c1b0cd

Please sign in to comment.