Skip to content

Commit

Permalink
Fix phpcs
Browse files Browse the repository at this point in the history
  • Loading branch information
mcg-web authored Feb 22, 2019
1 parent c063b35 commit 9395527
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,6 @@ private function addCallableSection($name)
public static function getRootNodeWithoutDeprecation(TreeBuilder $builder, $name, $type = 'array')
{
// BC layer for symfony/config 4.1 and older
return \method_exists($builder, 'getRootNode') ? $builder->getRootNode() : $builder->root($name, $type);
return method_exists($builder, 'getRootNode') ? $builder->getRootNode() : $builder->root($name, $type);
}
}

0 comments on commit 9395527

Please sign in to comment.