123456789101112131415161718192021 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Quote\Model\Product;
- use Magento\Catalog\Api\Data\ProductInterface;
- /**
- * Interface \Magento\Quote\Model\Product\QuoteItemsCleanerInterface
- *
- */
- interface QuoteItemsCleanerInterface
- {
- /**
- * @param ProductInterface $product
- * @return void
- */
- public function execute(ProductInterface $product);
- }
|