products = new ProductCollection(); $this->facets = new FacetCollection(); } 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; } }