Newer
Older
private ProductCollection $products;
private FacetCollection $facets;
private int $total = 0;
public function setTotal(int $total): void
{
$this->total = $total;
}
public function getTotal(): int
{
return $this->total;
}
public function getProducts(): ProductCollection
{
return $this->products;
}
public function getFacets(): FacetCollection
{
return $this->facets;
}