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

  # Product CSV Exporter
  prestashop.core.product.csv_exporter:
    class: PrestaShop\PrestaShop\Core\Product\ProductCsvExporter
    arguments: [ '@translator', '@prestashop.core.admin.data_provider.product_interface' ]

  prestashop.core.product.combination.generator.combination_generator:
    class: PrestaShop\PrestaShop\Core\Product\Combination\Generator\CombinationGenerator

  prestashop.core.product.combination.name_builder.combination_name_builder:
    arguments:
      - '@translator'
      # separator between attributes (ex : size: M, color: blue), to be replaced by a configuration parameter (env or php const)
      # https://github.com/PrestaShop/PrestaShop/issues/28512
      - ', '
      - '@=service("prestashop.adapter.legacy.configuration").get("PS_ATTRIBUTE_ANCHOR_SEPARATOR")'
    class: PrestaShop\PrestaShop\Core\Product\Combination\NameBuilder\CombinationNameBuilder