*/ private Collection $type; /** * @var Collection */ private Collection $kitchen; public function __construct(Collection $type, Collection $kitchen) { $this->type = $type; $this->kitchen = $kitchen; } public function getType(): Collection { return $this->type; } public function getKitchen(): Collection { return $this->kitchen; } }