value = $value; $this->label = $label; } /** * @var bool */ private bool $isDisabled = false; public function markDisabled(): void { $this->isDisabled = true; } public function isDisabled(): bool { return $this->isDisabled; } }