Skip to content
Snippets Groups Projects
RestaurantFilterVariants.php 588 B
Newer Older

class RestaurantFilterVariants
{
    /**
     * @var Collection<RestaurantType>
     */
    private Collection $type;
    /**
     * @var Collection<KitchenType>
     */
    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;
    }
}