allowHolder; } public function getId(): ?int { return $this->id; } public function getLabel(): array { return $this->label; } public function getOrdering(): float { return $this->ordering; } public function getShareHousehold(): bool { return $this->shareHouseHold; } public function isAllowHolder(): bool { return $this->getAllowHolder(); } public function setAllowHolder(bool $allowHolder): self { $this->allowHolder = $allowHolder; return $this; } public function setLabel(array $label): self { $this->label = $label; return $this; } public function setOrdering(float $ordering): self { $this->ordering = $ordering; return $this; } public function setShareHousehold(bool $shareHouseHold): self { $this->shareHouseHold = $shareHouseHold; return $this; } }