Collection.php 535 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * Customer Address EAV additional attribute resource collection
  8. *
  9. * @author Magento Core Team <core@magentocommerce.com>
  10. */
  11. namespace Magento\Customer\Model\ResourceModel\Address\Attribute;
  12. class Collection extends \Magento\Customer\Model\ResourceModel\Attribute\Collection
  13. {
  14. /**
  15. * Default attribute entity type code
  16. *
  17. * @var string
  18. */
  19. protected $_entityTypeCode = 'customer_address';
  20. }