Make test pass

This commit is contained in:
Brabli
2022-07-21 14:49:20 +01:00
parent 17e549c231
commit 545e03af50

View File

@@ -43,6 +43,6 @@ trait MappableTrait
public function isGeocoded(): bool public function isGeocoded(): bool
{ {
return $this->getLatitude() && $this->getLongitude(); return null !== $this->getLatitude() && null !== $this->getLongitude();
} }
} }