ReaderInterface.php 524 B

1234567891011121314151617181920
  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\Total;
  7. /**
  8. * Interface \Magento\Quote\Model\Quote\Address\Total\ReaderInterface
  9. *
  10. */
  11. interface ReaderInterface
  12. {
  13. /**
  14. * @param \Magento\Quote\Model\Quote $quote
  15. * @param \Magento\Quote\Model\Quote\Address\Total $total
  16. * @return []
  17. */
  18. public function fetch(\Magento\Quote\Model\Quote $quote, \Magento\Quote\Model\Quote\Address\Total $total);
  19. }