Skip to content

Commit

Permalink
[FrameworkBundle] Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
OskarStark committed Apr 28, 2024
1 parent 52a2e98 commit 65640a7
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions DependencyInjection/FrameworkExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -2080,10 +2080,9 @@ private function registerMessengerConfiguration(array $config, ContainerBuilder
->setFactory([new Reference('messenger.transport_factory'), 'createTransport'])
->setArguments([$transport['dsn'], $transport['options'] + ['transport_name' => $name], new Reference($serializerId)])
->addTag('messenger.receiver', [
'alias' => $name,
'is_failure_transport' => \in_array($name, $failureTransports),
]
)
'alias' => $name,
'is_failure_transport' => \in_array($name, $failureTransports),
])
;
$container->setDefinition($transportId = 'messenger.transport.'.$name, $transportDefinition);
$senderAliases[$name] = $transportId;
Expand Down

0 comments on commit 65640a7

Please sign in to comment.