Beispiel #1
0
 /**
  * Item data.
  *
  * @return array
  */
 public function getData()
 {
     $productItemData = ['id' => $this->product->getId(), 'name' => $this->product->getName(), 'price' => $this->getProductPrice(), 'image' => $this->productHelper->getSmallImageUrl($this->product), 'score' => $this->product->getDocumentScore(), 'is_in_stock' => $this->isInStockProduct()];
     return $productItemData;
 }