id; } public function getName(): ?string { return $this->name; } public function setName(string $name): self { $this->name = $name; return $this; } public function getCompanyId(): ?string { return $this->companyId; } public function setCompanyId(string $companyId): self { $this->companyId = $companyId; return $this; } public function getCity(): ?string { return $this->city; } public function setCity(string $city): self { $this->city = $city; return $this; } }