ProductDataMapper.php 594 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Elasticsearch\Model\Adapter\DataMapper;
  7. use Magento\Elasticsearch\Model\Adapter\DataMapperInterface;
  8. use Magento\Elasticsearch\Elasticsearch5\Model\Adapter\DataMapper\ProductDataMapper as ElasticSearch5ProductDataMapper;
  9. /**
  10. * Don't use this product data mapper class.
  11. *
  12. * @deprecated 100.2.0
  13. * @see \Magento\Elasticsearch\Model\Adapter\BatchDataMapperInterface
  14. */
  15. class ProductDataMapper extends ElasticSearch5ProductDataMapper implements DataMapperInterface
  16. {
  17. }