Skip to content

Commit

Permalink
minor #54755 [FrameworkBundle] Fix indentation (OskarStark)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
fabpot committed Apr 28, 2024
2 parents 868eb11 + 7e796e1 commit cb0be79
Showing 1 changed file with 3 additions and 4 deletions.
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 cb0be79

Please sign in to comment.