From 42af4c21c73e983e881fdb3d3d61d643740a1ee2 Mon Sep 17 00:00:00 2001 From: Rachelle Scheijen Date: Wed, 23 Mar 2022 11:31:45 +0100 Subject: [PATCH] Ignoring extra keys in the configuration so they can be loaded for plugins --- DependencyInjection/Configuration.php | 1 + 1 file changed, 1 insertion(+) diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index 2f0cd252..81d558a5 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -23,6 +23,7 @@ public function getConfigTreeBuilder(): TreeBuilder return $treeBuilder ->getRootNode() + ->ignoreExtraKeys(false) ->children() // Include jQuery (true) library or not (false) ->booleanNode('include_jquery')->defaultFalse()->end()