Skip to content

Commit

Permalink
Fixed services.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kkarkus committed Aug 18, 2019
1 parent b55f5f0 commit 01e9e07
Showing 1 changed file with 28 additions and 9 deletions.
37 changes: 28 additions & 9 deletions src/CoreShop2VueStorefrontBundle/Resources/config/services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,18 @@ services:
public: true
tags: ['controller.service_arguments']

CoreShop2VueStorefrontBundle\Bridge\EnginePersister: ~
CoreShop2VueStorefrontBundle\Bridge\EnginePersister:
arguments:
- '@es.manager.default'

CoreShop2VueStorefrontBundle\Bridge\DocumentMapper\DocumentProductMapper: ~

CoreShop2VueStorefrontBundle\Bridge\DocumentMapper\DocumentCategoryMapper: ~

CoreShop2VueStorefrontBundle\Bridge\DocumentMapper\DocumentAttributeMapper: ~

CoreShop2VueStorefrontBundle\Bridge\DocumentMapper\DocumentConfigurableProductMapper: ~

CoreShop2VueStorefrontBundle\Bridge\Attribute\AttributeIdGenerator: ~

CoreShop2VueStorefrontBundle\Bridge\Attribute\AttributeResolver: ~
Expand All @@ -42,18 +46,24 @@ services:
arguments:
- '@coreshop.repository.index'

CoreShop2VueStorefrontBundle\Security\User\UserProvider: ~
CoreShop2VueStorefrontBundle\Security\User\UserProvider:
arguments:
- "@coreshop.repository.customer"

CoreShop2VueStorefrontBundle\Bridge\Customer\CustomerManager:
arguments:
- "@coreshop.factory.customer"
- "@coreshop.factory.address"
- "@coreshop.customer.registration_service"
- "@coreshop.repository.country"
- "@coreshop.repository.customer"

CoreShop2VueStorefrontBundle\Bridge\Order\AddressDataToAddressItemTransformer:
arguments:
- "@coreshop.factory.address"
- "@coreshop.object_service"
- "%coreshop.folder.address%"
- "@coreshop.repository.country"

CoreShop2VueStorefrontBundle\Bridge\Order\OrderManager:
arguments:
Expand All @@ -67,17 +77,26 @@ services:

CoreShop2VueStorefrontBundle\Command\IndexCommand:
tags: ['console.command']
arguments:
$repository: '@coreshop.repository.product'

CoreShop2VueStorefrontBundle\Document\DocumentFactory:
arguments:
- '@es.manager.default'

CoreShop2VueStorefrontBundle\Document\DocumentFactory: ~
CoreShop2VueStorefrontBundle\Repository\AttributeRepository:
arguments:
- '@es.manager.default'

CoreShop2VueStorefrontBundle\Worker\ElasticSearchWorker:
arguments:
- '@coreshop.registry.index.extensions'
- '@coreshop.registry.index.getter'
- '@coreshop.registry.index.interpreter'
- '@coreshop.index.filter_group_helper'
- '@coreshop.index.condition.renderer'
- '@coreshop.index.order.renderer'
$extensionsRegistry: '@coreshop.registry.index.extensions'
$getterServiceRegistry: '@coreshop.registry.index.getter'
$interpreterServiceRegistry: '@coreshop.registry.index.interpreter'
$filterGroupHelper: '@coreshop.index.filter_group_helper'
$conditionRenderer: '@coreshop.index.condition.renderer'
$orderRenderer: '@coreshop.index.order.renderer'
$manager: '@es.manager.default'
shared: false
calls:
- { method: setLogger, arguments: ['@logger'] }
Expand Down

0 comments on commit 01e9e07

Please sign in to comment.