QuoteSessionInterface.php 375 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Signifyd\Model\QuoteSession;
  7. /**
  8. * Interface QuoteSessionInterface
  9. */
  10. interface QuoteSessionInterface
  11. {
  12. /**
  13. * Returns quote from session.
  14. *
  15. * @return \Magento\Quote\Api\Data\CartInterface
  16. */
  17. public function getQuote();
  18. }