Rename Mappable stuff to Geocode stuff, change dir structure
This commit is contained in:
18
src/Interface/Entity/GeocodeInterface.php
Normal file
18
src/Interface/Entity/GeocodeInterface.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Pcm\GeocodeBundle\Interface\Entity;
|
||||
|
||||
interface GeocodeInterface
|
||||
{
|
||||
public function getLatitude(): ?float;
|
||||
|
||||
public function getLongitude(): ?float;
|
||||
|
||||
public function setLatitude(float $lat): self;
|
||||
|
||||
public function setLongitude(float $lon): self;
|
||||
|
||||
public function isGeocoded(): bool;
|
||||
}
|
||||
Reference in New Issue
Block a user