From: Raphaƫl Gertz Date: Mon, 28 Oct 2019 18:21:17 +0000 (+0100) Subject: Update to new symfony 4.x style X-Git-Tag: 0.1.0~1 X-Git-Url: https://git.rapsys.eu/packbundle/commitdiff_plain/22c6a9aae25e6f650086527456f0d3cdb6891970 Update to new symfony 4.x style --- diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index 5456a29..bfa4b3c 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -22,7 +22,7 @@ class Configuration implements ConfigurationInterface { */ public function getConfigTreeBuilder() { //Get TreeBuilder object - $treeBuilder = new TreeBuilder(); + $treeBuilder = new TreeBuilder('parameters'); //Get ExecutableFinder object $finder = new ExecutableFinder(); @@ -84,7 +84,7 @@ class Configuration implements ConfigurationInterface { //Here we define the parameters that are allowed to configure the bundle. $treeBuilder //Parameters - ->root('parameters') + ->getRootNode() ->addDefaultsIfNotSet() ->children() ->arrayNode('rapsys_pack')