Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ItemCollectionProvider.php
Go to the documentation of this file.
1 <?php
7 
9 use Magento\Catalog\Model\ResourceModel\Product\CollectionFactory;
10 
12 {
16  private $collectionFactory;
17 
21  public function __construct(CollectionFactory $collectionFactory)
22  {
23  $this->collectionFactory = $collectionFactory;
24  }
25 
30  public function getCollection(\Magento\Catalog\Model\Category $category)
31  {
32  return $this->collectionFactory->create();
33  }
34 }
getCollection(\Magento\Catalog\Model\Category $category)