Compare commits

...

1 Commits
0.0.5 ... 0.0.6

Author SHA1 Message Date
Brabli
31d29f2460 Fix broken latlong model 2022-10-17 15:38:10 +01:00

View File

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