Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ProductSearch.php
Go to the documentation of this file.
1 <?php
7 declare(strict_types=1);
8 
10 
12 
15 {
19  private $stockHelper;
20 
24  public function __construct(Stock $stockHelper)
25  {
26  $this->stockHelper = $stockHelper;
27  }
28 
37  public function afterPrepareCollection(
38  \Magento\Catalog\Model\ProductLink\Search $subject,
39  \Magento\Catalog\Model\ResourceModel\Product\Collection $collection
40  ): \Magento\Catalog\Model\ResourceModel\Product\Collection {
41  $this->stockHelper->addIsInStockFilterToCollection($collection);
42  return $collection;
43  }
44 }
afterPrepareCollection(\Magento\Catalog\Model\ProductLink\Search $subject, \Magento\Catalog\Model\ResourceModel\Product\Collection $collection)