Skip to content

Commit

Permalink
fix fix
Browse files Browse the repository at this point in the history
  • Loading branch information
garak committed Jun 5, 2019
1 parent e00f8a6 commit a7a5bdf
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 @@ -25,7 +25,7 @@ public function getConfigTreeBuilder(): TreeBuilder
} else {
$builder = new TreeBuilder();
}
$root = \method_exists($treeBuilder, 'getRootNode') ? $builder->getRootNode() : $builder->root('vich_uploader');
$root = \method_exists($builder, 'getRootNode') ? $builder->getRootNode() : $builder->root('vich_uploader');
$this->addGeneralSection($root);
$this->addMetadataSection($root);
$this->addMappingsSection($root);
Expand Down

0 comments on commit a7a5bdf

Please sign in to comment.