choice = $choice; $this->choiceScore = $choiceScore; $this->id = $id; $this->isCorrect = $isCorrect; } public function isCorrect(): bool { return $this->isCorrect; } public function getChoiceScore(): ?float { return $this->choiceScore; } public function getChoice(): string { return $this->choice; } public function getId(): string { return $this->id; } }