Update docblocks

This commit is contained in:
brabli
2024-08-05 14:50:26 +01:00
parent 8b662ebfa3
commit 10d1d3c318
3 changed files with 17 additions and 8 deletions

View File

@@ -4,6 +4,9 @@ declare(strict_types=1);
namespace Pcm\GeocodeBundle\Interface\Entity;
/**
* Defines latitude and longitude getters and setters
*/
interface GeocodeInterface
{
public function getLatitude(): ?float;
@@ -14,5 +17,9 @@ interface GeocodeInterface
public function setLongitude(float $lon): self;
/**
* @return bool True if both latitude and longitude is set
*/
public function isGeocoded(): bool;
}