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

Skip to content

Commit dbad0a2

Browse files
authored
Drop useless call to end method
Due to this, upgrading from SF 6.4.7 to more recent versions is impossible.
1 parent 0b3555a commit dbad0a2

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

pkg/enqueue/Symfony/Client/DependencyInjection/ClientFactory.php

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,8 @@ public static function getConfiguration(bool $debug, string $name = 'client'): N
7474
->scalarNode('router_processor')->defaultNull()->end()
7575
->integerNode('redelivered_delay_time')->min(0)->defaultValue(0)->end()
7676
->scalarNode('default_queue')->defaultValue('default')->cannotBeEmpty()->end()
77-
->arrayNode('driver_options')
78-
->addDefaultsIfNotSet()
79-
->info('The array contains driver specific options')
80-
->ignoreExtraKeys(false)
77+
->arrayNode('driver_options')->addDefaultsIfNotSet()->info('The array contains driver specific options')->ignoreExtraKeys(false)->end()
8178
->end()
82-
->end()->end()
8379
;
8480

8581
return $builder;

0 commit comments

Comments
 (0)