From ae72381a4876035dd5717635d056f34b9406eb2c Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Thu, 24 Oct 2019 22:40:56 +0200 Subject: [PATCH] Hot fix --- .../FrameworkBundle/DependencyInjection/Configuration.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php index e66061440b..ee35abd921 100644 --- a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php +++ b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php @@ -1516,7 +1516,9 @@ class Configuration implements ConfigurationInterface ->prototype('scalar')->end() ->end() ->end() - ->booleanNode('notification_on_failed_messages')->defaultFalse()->end() + ->children() + ->booleanNode('notification_on_failed_messages')->defaultFalse()->end() + ->end() ->children() ->arrayNode('channel_policy') ->useAttributeAsKey('name')