QuoteItemsCleanerInterface.php 446 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Quote\Model\Product;
  7. use Magento\Catalog\Api\Data\ProductInterface;
  8. /**
  9. * Interface \Magento\Quote\Model\Product\QuoteItemsCleanerInterface
  10. *
  11. */
  12. interface QuoteItemsCleanerInterface
  13. {
  14. /**
  15. * @param ProductInterface $product
  16. * @return void
  17. */
  18. public function execute(ProductInterface $product);
  19. }