Skip to content

Commit 3c1c778

Browse files
authored
Merge pull request #1359 from ddziaduch/patch-1
Drop useless call to end method
2 parents 0b3555a + dbad0a2 commit 3c1c778

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

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

+1-5
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)