Skip to content

Commit

Permalink
removed deprecation notices on symfony >=4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleksandr Besedin authored and ruudk committed Dec 19, 2018
1 parent ccd4d1d commit 2e7a2dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/DependencyInjection/CommandBusConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function __construct($alias)

public function getConfigTreeBuilder()
{
$treeBuilder = new TreeBuilder();
$treeBuilder = new TreeBuilder($this->alias);

$rootNode = $treeBuilder->root($this->alias);
$rootNode
Expand Down
2 changes: 1 addition & 1 deletion src/DependencyInjection/DoctrineOrmBridgeConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function __construct($alias)

public function getConfigTreeBuilder()
{
$treeBuilder = new TreeBuilder();
$treeBuilder = new TreeBuilder($this->alias);

$rootNode = $treeBuilder->root($this->alias);

Expand Down
2 changes: 1 addition & 1 deletion src/DependencyInjection/EventBusConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function __construct($alias)

public function getConfigTreeBuilder()
{
$treeBuilder = new TreeBuilder();
$treeBuilder = new TreeBuilder($this->alias);

$rootNode = $treeBuilder->root($this->alias);
$rootNode
Expand Down

0 comments on commit 2e7a2dd

Please sign in to comment.