Skip to content
Snippets Groups Projects
Commit 22207b02 authored by Moreau Elise's avatar Moreau Elise
Browse files

latitude and longitude are float

parent 95963e6e
No related branches found
No related tags found
No related merge requests found
...@@ -55,17 +55,17 @@ class Location implements JsonSerializable ...@@ -55,17 +55,17 @@ class Location implements JsonSerializable
} }
/** /**
* @return string * @return float
*/ */
public function getLatitude(): string public function getLatitude(): float
{ {
return $this->latitude; return $this->latitude;
} }
/** /**
* @return string * @return float
*/ */
public function getLongitude(): string public function getLongitude(): float
{ {
return $this->longitude; return $this->longitude;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment