Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/magento/module-customer/Model/Indexer/Address/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-customer/Model/Indexer/Address/AttributeProvider.php

<?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);
    }
}