8000 minor #54755 [FrameworkBundle] Fix indentation (OskarStark) · symfony/symfony@cb0be79 · GitHub
[go: up one dir, main page]

Skip to content

Commit cb0be79

Browse files
committed
minor #54755 [FrameworkBundle] Fix indentation (OskarStark)
This PR was merged into the 5.4 branch. Discussion ---------- [FrameworkBundle] Fix indentation | Q | A | ------------- | --- | Branch? | 5.4 | Bug fix? | no | New feature? | no | Deprecations? | no | Issues | -- | License | MIT Commits ------- 7e796e1 [FrameworkBundle] Fix indentation
2 parents 868eb11 + 7e796e1 commit cb0be79

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/Symfony/Bundle/FrameworkBundle/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)
0