CustomAttributeList.php 388 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Quote\Model\Quote\Address;
  7. class CustomAttributeList implements CustomAttributeListInterface
  8. {
  9. /**
  10. * Retrieve list of quote address custom attributes
  11. *
  12. * @return array
  13. */
  14. public function getAttributes()
  15. {
  16. return [];
  17. }
  18. }