Skip to content

Commit

Permalink
Merge pull request #2 from smithandre/bugfix/treebuilder
Browse files Browse the repository at this point in the history
Symfony 5 Framework Bundle fix
  • Loading branch information
pierredup authored May 14, 2024
2 parents 238cedf + 52e0122 commit a8326db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Symfony/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ class Configuration implements ConfigurationInterface
*/
public function getConfigTreeBuilder()
{
$treeBuilder = new TreeBuilder();
$rootNode = $treeBuilder->root('ruler');
$treeBuilder = new TreeBuilder('ruler');
$rootNode = $treeBuilder->getRootNode();

$rootNode
->children()
Expand Down

0 comments on commit a8326db

Please sign in to comment.