diff --git a/src/Model/LatLongModel.php b/src/Model/LatLongModel.php index 4d35773..3fdde5d 100644 --- a/src/Model/LatLongModel.php +++ b/src/Model/LatLongModel.php @@ -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; } }