From: Raphaƫl Gertz Date: Mon, 28 Oct 2019 20:20:38 +0000 (+0100) Subject: Switch to 4.2 symfony style X-Git-Url: https://git.rapsys.eu/airbundle/commitdiff_plain/6e1d7f7295c7d66282aad5603705009b931d70b3 Switch to 4.2 symfony style --- diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index 13d24a7..9be5f15 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -15,7 +15,7 @@ class Configuration implements ConfigurationInterface { * {@inheritdoc} */ public function getConfigTreeBuilder() { - $treeBuilder = new TreeBuilder(); + $treeBuilder = new TreeBuilder('parameters'); // Here you should define the parameters that are allowed to // configure your bundle. See the documentation linked above for @@ -36,7 +36,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_air')