From 03be8f00cf24177fe296ebe23abf5bff1c2b822a Mon Sep 17 00:00:00 2001 From: LukaMaret <144114004+LukaMaret@users.noreply.github.com> Date: Mon, 5 Aug 2024 15:39:54 +0200 Subject: [PATCH] Fix redondant `end()` call --- Symfony/Client/DependencyInjection/ClientFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Symfony/Client/DependencyInjection/ClientFactory.php b/Symfony/Client/DependencyInjection/ClientFactory.php index 2eede31..4e8fefd 100644 --- a/Symfony/Client/DependencyInjection/ClientFactory.php +++ b/Symfony/Client/DependencyInjection/ClientFactory.php @@ -79,7 +79,7 @@ public static function getConfiguration(bool $debug, string $name = 'client'): N ->info('The array contains driver specific options') ->ignoreExtraKeys(false) ->end() - ->end()->end() + ->end() ; return $builder;