Backend.php 674 B

1234567891011121314151617181920212223242526
  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 backend resource model
  9. *
  10. * @author Magento Core Team <core@magentocommerce.com>
  11. */
  12. class Backend extends \Magento\Eav\Model\Entity\Attribute\Backend\AbstractBackend
  13. {
  14. /**
  15. * Collect totals
  16. *
  17. * @param \Magento\Quote\Model\Quote\Address $address
  18. * @return $this
  19. * @SuppressWarnings(PHPMD.UnusedFormalParameter)
  20. */
  21. public function collectTotals(\Magento\Quote\Model\Quote\Address $address)
  22. {
  23. return $this;
  24. }
  25. }