Current File : //var/www/prestashop/src/PrestaShopBundle/Resources/config/services/bundle/controller.yml
services:
  _defaults:
    public: true

  PrestaShopBundle\Controller\Api\ApiController:
    abstract: true
    class: PrestaShopBundle\Controller\Api\ApiController
    calls:
      - [ setLogger, [ '@logger' ] ]
      - [ setContainer, [ '@service_container' ] ]
    tags:
      - { name: !php/const PrestaShopBundle\Controller\Admin\FrameworkBundleAdminController::PRESTASHOP_CORE_CONTROLLERS_TAG }

  prestashop.core.api.controller:
    alias: PrestaShopBundle\Controller\Api\ApiController

  PrestaShopBundle\Controller\Api\StockController:
    class: PrestaShopBundle\Controller\Api\StockController
    parent: PrestaShopBundle\Controller\Api\ApiController
    public: true
    properties:
      movements: "@prestashop.core.api.stock.movements_collection"
      stockRepository: "@prestashop.core.api.stock.repository"
      queryParams: "@prestashop.core.api.query_stock_params_collection"
    tags:
      - { name: !php/const PrestaShopBundle\Controller\Admin\FrameworkBundleAdminController::PRESTASHOP_CORE_CONTROLLERS_TAG }

  prestashop.core.api.stock.controller:
    alias: PrestaShopBundle\Controller\Api\StockController

  PrestaShopBundle\Controller\Api\StockMovementController:
    class: PrestaShopBundle\Controller\Api\StockMovementController
    parent: PrestaShopBundle\Controller\Api\ApiController
    public: true
    properties:
      stockMovementRepository: "@prestashop.core.api.stock_movement.repository"
      queryParams: "@prestashop.core.api.query_stock_movement_params_collection"
    tags:
      - { name: !php/const PrestaShopBundle\Controller\Admin\FrameworkBundleAdminController::PRESTASHOP_CORE_CONTROLLERS_TAG }

  prestashop.core.api.stock_movement.controller:
    alias: PrestaShopBundle\Controller\Api\StockMovementController

  PrestaShopBundle\Controller\Api\SupplierController:
    class: PrestaShopBundle\Controller\Api\SupplierController
    parent: PrestaShopBundle\Controller\Api\ApiController
    public: true
    properties:
      supplierRepository: "@prestashop.core.api.supplier.repository"
    tags:
      - { name: !php/const PrestaShopBundle\Controller\Admin\FrameworkBundleAdminController::PRESTASHOP_CORE_CONTROLLERS_TAG }

  prestashop.core.api.supplier.controller:
    alias: PrestaShopBundle\Controller\Api\SupplierController

  PrestaShopBundle\Controller\Api\ManufacturerController:
    class: PrestaShopBundle\Controller\Api\ManufacturerController
    parent: PrestaShopBundle\Controller\Api\ApiController
    public: true
    properties:
      manufacturerRepository: "@prestashop.core.api.manufacturer.repository"
    tags:
      - { name: !php/const PrestaShopBundle\Controller\Admin\FrameworkBundleAdminController::PRESTASHOP_CORE_CONTROLLERS_TAG }

  prestashop.core.api.manufacturer.controller:
    alias: PrestaShopBundle\Controller\Api\ManufacturerController

  PrestaShopBundle\Controller\Api\CategoryController:
    class: PrestaShopBundle\Controller\Api\CategoryController
    parent: PrestaShopBundle\Controller\Api\ApiController
    public: true
    properties:
      categoryRepository: "@prestashop.core.api.category.repository"
    tags:
      - { name: !php/const PrestaShopBundle\Controller\Admin\FrameworkBundleAdminController::PRESTASHOP_CORE_CONTROLLERS_TAG }

  prestashop.core.api.category.controller:
    alias: PrestaShopBundle\Controller\Api\CategoryController

  PrestaShopBundle\Controller\Api\AttributeController:
    class: PrestaShopBundle\Controller\Api\AttributeController
    parent: PrestaShopBundle\Controller\Api\ApiController
    public: true
    properties:
      featureAttributeRepository: "@prestashop.core.api.feature_attribute.repository"
    tags:
      - { name: !php/const PrestaShopBundle\Controller\Admin\FrameworkBundleAdminController::PRESTASHOP_CORE_CONTROLLERS_TAG }

  prestashop.core.api.attribute.controller:
    alias: PrestaShopBundle\Controller\Api\AttributeController

  PrestaShopBundle\Controller\Api\FeatureController:
    class: PrestaShopBundle\Controller\Api\FeatureController
    parent: PrestaShopBundle\Controller\Api\ApiController
    public: true
    properties:
      featureAttributeRepository: "@prestashop.core.api.feature_attribute.repository"
    tags:
      - { name: !php/const PrestaShopBundle\Controller\Admin\FrameworkBundleAdminController::PRESTASHOP_CORE_CONTROLLERS_TAG }

  prestashop.core.api.feature.controller:
    alias: PrestaShopBundle\Controller\Api\FeatureController

  PrestaShopBundle\Controller\Api\I18nController:
    class: PrestaShopBundle\Controller\Api\I18nController
    parent: PrestaShopBundle\Controller\Api\ApiController
    public: true
    tags:
      - { name: !php/const PrestaShopBundle\Controller\Admin\FrameworkBundleAdminController::PRESTASHOP_CORE_CONTROLLERS_TAG }

  prestashop.core.api.i18n.controller:
    alias: PrestaShopBundle\Controller\Api\I18nController

  PrestaShopBundle\Controller\Api\TranslationController:
    class: PrestaShopBundle\Controller\Api\TranslationController
    parent: PrestaShopBundle\Controller\Api\ApiController
    public: true
    properties:
      translationService: "@prestashop.service.translation"
      queryParams: "@prestashop.core.api.query_translation_params_collection"
    tags:
      - { name: !php/const PrestaShopBundle\Controller\Admin\FrameworkBundleAdminController::PRESTASHOP_CORE_CONTROLLERS_TAG }

  prestashop.core.api.translation.controller:
    alias: PrestaShopBundle\Controller\Api\TranslationController

  PrestaShopBundle\Controller\Api\Improve\Design\PositionsController:
    class: PrestaShopBundle\Controller\Api\Improve\Design\PositionsController
    parent: PrestaShopBundle\Controller\Api\ApiController
    public: true
    tags:
      - { name: !php/const PrestaShopBundle\Controller\Admin\FrameworkBundleAdminController::PRESTASHOP_CORE_CONTROLLERS_TAG }

  prestashop.core.api.improve.design.postions.controller:
    alias: PrestaShopBundle\Controller\Api\Improve\Design\PositionsController

  prestashop.core.admin.multistore:
    class: PrestaShopBundle\Controller\Admin\MultistoreController
    parent: PrestaShopBundle\Controller\Admin\FrameworkBundleAdminController
    public: true
    properties:
      multistoreFeature: "@prestashop.adapter.multistore_feature"
      multistoreContext: "@prestashop.adapter.shop.context"
      entityManager: "@doctrine.orm.entity_manager"
    tags:
      - { name: !php/const PrestaShopBundle\Controller\Admin\FrameworkBundleAdminController::PRESTASHOP_CORE_CONTROLLERS_TAG }