address; } public function getHousehold(): ?Household { return $this->household; } public function getPerson(): ?Person { return $this->person; } /** * The start date of the intersection address/household. * * (this is not the startdate of the household, not * the startdate of the address) */ public function getValidFrom(): ?DateTimeInterface { return $this->validFrom; } /** * The end date of the intersection address/household. * * (this is not the enddate of the household, not * the enddate of the address) */ public function getValidTo(): ?DateTimeImmutable { return $this->validTo; } }