ItemCollectionProviderInterface.php 501 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\Catalog\Model\Layer;
  8. /**
  9. * Interface \Magento\Catalog\Model\Layer\ItemCollectionProviderInterface
  10. *
  11. */
  12. interface ItemCollectionProviderInterface
  13. {
  14. /**
  15. * @param \Magento\Catalog\Model\Category $category
  16. * @return \Magento\Catalog\Model\ResourceModel\Product\Collection
  17. */
  18. public function getCollection(\Magento\Catalog\Model\Category $category);
  19. }