Skip to content

Commit

Permalink
Drop useless call to end method
Browse files Browse the repository at this point in the history
Due to this, upgrading from SF 6.4.7 to more recent versions is impossible.
  • Loading branch information
ddziaduch authored Sep 17, 2024
1 parent 4b3c6e9 commit 4d5f163
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions Symfony/Client/DependencyInjection/ClientFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,8 @@ public static function getConfiguration(bool $debug, string $name = 'client'): N
->scalarNode('router_processor')->defaultNull()->end()
->integerNode('redelivered_delay_time')->min(0)->defaultValue(0)->end()
->scalarNode('default_queue')->defaultValue('default')->cannotBeEmpty()->end()
->arrayNode('driver_options')
->addDefaultsIfNotSet()
->info('The array contains driver specific options')
->ignoreExtraKeys(false)
->arrayNode('driver_options')->addDefaultsIfNotSet()->info('The array contains driver specific options')->ignoreExtraKeys(false)->end()
->end()
->end()->end()
;

return $builder;
Expand Down

0 comments on commit 4d5f163

Please sign in to comment.