description; } public function getRegion(): ?string { return $this->region; } public function getCity(): ?string { return $this->city; } public function getCountry(): ?string { return $this->country; } public function getLat(): ?float { return $this->lat; } public function getLon(): ?float { return $this->lon; } public function jsonSerialize(): array { return [ 'description' => $this->description, 'region' => $this->region, 'city' => $this->city, 'country' => $this->country, 'lat' => $this->lat, 'lon' => $this->lon, ]; } }