This commit is contained in:
2022-03-06 22:36:38 +01:00
parent 739c7e9a77
commit 7afada5dad
3 changed files with 3 additions and 2 deletions

View File

@@ -98,7 +98,7 @@ class PersonPhone
public function isEmpty(): bool
{
return ("" === $this->getDescription() || null === $this->getDescription())
return ('' === $this->getDescription() || null === $this->getDescription())
&& null === $this->getPhonenumber();
}