Skip to content

Commit

Permalink
Merge pull request #47 from BitBagCommerce/fix-configuration
Browse files Browse the repository at this point in the history
fix: configuration
  • Loading branch information
pptasinski-bitbag authored Mar 16, 2021
2 parents d263a59 + d42880b commit 7c1a062
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ public function getConfigTreeBuilder(): TreeBuilder
->children()
->scalarNode('model')->defaultValue(WishlistProduct::class)->cannotBeEmpty()->end()
->scalarNode('interface')->defaultValue(WishlistProductInterface::class)->cannotBeEmpty()->end()
->scalarNode('repository')->defaultValue(WishlistRepository::class)->cannotBeEmpty()->end()
->scalarNode('controller')->defaultValue(EntityRepository::class)->cannotBeEmpty()->end()
->scalarNode('repository')->defaultValue(EntityRepository::class)->cannotBeEmpty()->end()
->scalarNode('controller')->defaultValue(ResourceController::class)->cannotBeEmpty()->end()
->scalarNode('factory')->defaultValue(Factory::class)->cannotBeEmpty()->end()
->end()
->end()
Expand Down

0 comments on commit 7c1a062

Please sign in to comment.