123456789101112131415161718192021222324252627 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Customer\Model\Indexer\Address;
- use Magento\Customer\Model\ResourceModel\Address\Attribute\Collection;
- use Magento\Eav\Model\Config;
- use Magento\Eav\Model\Entity\Attribute;
- class AttributeProvider extends \Magento\Customer\Model\Indexer\AttributeProvider
- {
- /**
- * EAV entity
- */
- const ENTITY = 'customer_address';
- /**
- * @param Config $eavConfig
- */
- public function __construct(
- Config $eavConfig
- ) {
- parent::__construct($eavConfig);
- }
- }
|