Fix broken latlong model

This commit is contained in:
Brabli
2022-10-17 15:38:10 +01:00
parent 6edbed9dfe
commit 31d29f2460

View File

@@ -15,11 +15,11 @@ class LatLongModel
public function getLatitude(): float public function getLatitude(): float
{ {
return $this->getLatitude(); return $this->latitude;
} }
public function getLongitude(): float public function getLongitude(): float
{ {
return $this->getLongitude(); return $this->longitude;
} }
} }