Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 65640a7

Browse files
committed
[FrameworkBundle] Fix indentation
1 parent 52a2e98 commit 65640a7

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

DependencyInjection/FrameworkExtension.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2080,10 +2080,9 @@ private function registerMessengerConfiguration(array $config, ContainerBuilder
20802080
->setFactory([new Reference('messenger.transport_factory'), 'createTransport'])
20812081
->setArguments([$transport['dsn'], $transport['options'] + ['transport_name' => $name], new Reference($serializerId)])
20822082
->addTag('messenger.receiver', [
2083-
'alias' => $name,
2084-
'is_failure_transport' => \in_array($name, $failureTransports),
2085-
]
2086-
)
2083+
'alias' => $name,
2084+
'is_failure_transport' => \in_array($name, $failureTransports),
2085+
])
20872086
;
20882087
$container->setDefinition($transportId = 'messenger.transport.'.$name, $transportDefinition);
20892088
$senderAliases[$name] = $transportId;

0 commit comments

Comments
 (0)