Author: Aurelien FOUCRET (aurelien.foucret@smile.fr)
Inheritance: extends Magento\Search\Model\Autocomplete\ItemFactory
Example #1
0
 /**
  * {@inheritDoc}
  */
 public function getItems()
 {
     $result = [];
     foreach ($this->productCollection as $product) {
         $result[] = $this->itemFactory->create(['product' => $product, 'type' => $this->getType()]);
     }
     return $result;
 }