Calling "Symfony\Component\Config\Definition\Builder\TreeBuilder::getRootNode()" before creating the root node is not supported, migrate to the new constructor signature instead. code example

Example: TreeBuilder::getRootNode()" before creating the root node is not supported, migrate to the new constructor signature instead.

$treeBuilder = new TreeBuilder('bundle_id');
$rootNode = method_exists(TreeBuilder::class, 'getRootNode') ? $treeBuilder->getRootNode() : $treeBuilder->root('bundle_id');

Tags:

Php Example