19 lines
346 B
PHP
19 lines
346 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Pcm\GeocodeBundle\Entity\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;
|
|
}
|