AttributeProvider.php 620 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Customer\Model\Indexer\Address;
  7. use Magento\Customer\Model\ResourceModel\Address\Attribute\Collection;
  8. use Magento\Eav\Model\Config;
  9. use Magento\Eav\Model\Entity\Attribute;
  10. class AttributeProvider extends \Magento\Customer\Model\Indexer\AttributeProvider
  11. {
  12. /**
  13. * EAV entity
  14. */
  15. const ENTITY = 'customer_address';
  16. /**
  17. * @param Config $eavConfig
  18. */
  19. public function __construct(
  20. Config $eavConfig
  21. ) {
  22. parent::__construct($eavConfig);
  23. }
  24. }