ItemPoolInterface.php 397 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Checkout\CustomerData;
  7. use Magento\Quote\Model\Quote\Item;
  8. /**
  9. * Item pool interface
  10. */
  11. interface ItemPoolInterface
  12. {
  13. /**
  14. * Get item data by quote item
  15. *
  16. * @param Item $item
  17. * @return array
  18. */
  19. public function getItemData(Item $item);
  20. }