id; } public function getName(): string|null { return $this->name; } public function setName(string $name): static { $this->name = $name; return $this; } public function getExtras(): string|null { return $this->extras; } public function setExtras(string|null $extras): static { $this->extras = $extras; return $this; } public function getFoodOrder(): FoodOrder|null { return $this->foodOrder; } public function setFoodOrder(FoodOrder|null $foodOrder): static { $this->foodOrder = $foodOrder; return $this; } public function getMenuItem(): MenuItem|null { return $this->menuItem; } public function setMenuItem(MenuItem|null $menuItem): static { $this->menuItem = $menuItem; return $this; } }