false])] private bool $showNumbers = false; #[ORM\Column(type: Types::BOOLEAN, options: ['default' => false])] private bool $confirmAnswers = false; public function getId(): Uuid { return $this->id; } public function isShowNumbers(): bool { return $this->showNumbers; } public function setShowNumbers(bool $showNumbers): self { $this->showNumbers = $showNumbers; return $this; } public function isConfirmAnswers(): bool { return $this->confirmAnswers; } public function setConfirmAnswers(bool $confirmAnswers): self { $this->confirmAnswers = $confirmAnswers; return $this; } }