From 31d29f24609529e53aaeaecc69314ac7e2bf34e9 Mon Sep 17 00:00:00 2001 From: Brabli <67018167+Brabli@users.noreply.github.com> Date: Mon, 17 Oct 2022 15:38:10 +0100 Subject: [PATCH] Fix broken latlong model --- src/Model/LatLongModel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } }