CustomAttributeList.php 322 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Customer\Model\Address;
  7. class CustomAttributeList implements CustomAttributeListInterface
  8. {
  9. /**
  10. * {@inheritdoc}
  11. */
  12. public function getAttributes()
  13. {
  14. return [];
  15. }
  16. }