Skip to content

Commit

Permalink
Merge pull request #1359 from ddziaduch/patch-1
Browse files Browse the repository at this point in the history
Drop useless call to end method
  • Loading branch information
makasim authored Sep 24, 2024
2 parents 0b3555a + dbad0a2 commit 3c1c778
Showing 1 changed file with 1 addition and 5 deletions.
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 3c1c778

Please sign in to comment.