From 2f54e01fdd49538851d58ede05c892b8e09fc6db Mon Sep 17 00:00:00 2001 From: Bradley Date: Thu, 26 Sep 2024 09:44:45 +0100 Subject: [PATCH] Update docblock --- src/Interface/Entity/GeocodeInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Interface/Entity/GeocodeInterface.php b/src/Interface/Entity/GeocodeInterface.php index d6f2429..d661213 100644 --- a/src/Interface/Entity/GeocodeInterface.php +++ b/src/Interface/Entity/GeocodeInterface.php @@ -18,7 +18,7 @@ interface GeocodeInterface public function setLongitude(float $lon): self; /** - * @return bool True if both latitude and longitude is set + * @return bool True if both latitude and longitude are set and are not (0, 0) */ public function isGeocoded(): bool; }