Skip to content

Commit

Permalink
Fix return TreeBuilder
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-schranz committed Jul 17, 2024
1 parent 7981ced commit 4658d93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

class Configuration implements ConfigurationInterface
{
public function getConfigTreeBuilder()
public function getConfigTreeBuilder(): TreeBuilder
{
$treeBuilder = new TreeBuilder('sulu_content');
$rootNode = $treeBuilder->getRootNode();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

class Configuration implements ConfigurationInterface
{
public function getConfigTreeBuilder()
public function getConfigTreeBuilder(): TreeBuilder
{
$treeBuilder = new TreeBuilder('example_test');
$rootNode = $treeBuilder->getRootNode();
Expand Down

0 comments on commit 4658d93

Please sign in to comment.