type = $type; $this->code = $code; $this->products = new FacetItemCollection(); } public function getType(): FacetType { return $this->type; } public function getCode(): string { return $this->code; } public function es(): array { return [ 'facet_code' => $this->code, 'facet_value' => $this->type, ]; } }