First commit

This commit is contained in:
Brabli
2022-07-19 10:21:40 +01:00
commit 25c87ef115
12 changed files with 379 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<?php
declare(strict_types=1);
namespace Pcm\GeocodeBundle\Entity;
class GeocodeData
{
private float $latitude;
private float $longitude;
public function setLatitude(float $latitude): void
{
$this->latitude = $latitude;
}
public function setLongitude(float $longitude): void
{
$this->longitude = $longitude;
}
public function getLatitude(): float
{
return $this->getLatitude();
}
public function getLongitude(): float
{
return $this->getLongitude();
}
}