First commit
This commit is contained in:
18
src/Interface/MappableInterface.php
Normal file
18
src/Interface/MappableInterface.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Pcm\GeocodeBundle\Interface;
|
||||
|
||||
interface MappableInterface
|
||||
{
|
||||
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