Frontend.php 693 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Quote\Model\ResourceModel\Quote\Address\Attribute;
  7. /**
  8. * Quote address attribute frontend resource model
  9. *
  10. * @author Magento Core Team <core@magentocommerce.com>
  11. */
  12. class Frontend extends \Magento\Eav\Model\Entity\Attribute\Frontend\AbstractFrontend
  13. {
  14. /**
  15. * Fetch totals
  16. *
  17. * @param \Magento\Quote\Model\Quote\Address $address
  18. * @return array
  19. * @SuppressWarnings(PHPMD.UnusedFormalParameter)
  20. */
  21. public function fetchTotals(\Magento\Quote\Model\Quote\Address $address)
  22. {
  23. $arr = [];
  24. return $arr;
  25. }
  26. }