Skip to content

Commit

Permalink
fix: configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
pptasinski committed Mar 16, 2021
1 parent 931b61f commit d42880b
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 d42880b

Please sign in to comment.