<?php
namespace App\Entity;
use App\Model\Entity;
use App\Repository\NextQuestionRepository;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Serializer\Annotation\Groups;
use Symfony\Component\Serializer\Annotation\SerializedName;
use Symfony\Component\Uid\Uuid;
#[ORM\Entity(repositoryClass: NextQuestionRepository::class)]
class NextQuestion extends Entity
{
#[ORM\Column(type: Types::JSON)]
#[Groups(['question:read'])]
private array $answers = [];
#[ORM\ManyToOne(inversedBy: 'nextQuestions')]
#[ORM\JoinColumn(nullable: false)]
private ?Question $currentQuestion = null;
#[ORM\ManyToOne(inversedBy: 'previousQuestions')]
#[ORM\JoinColumn(nullable: false)]
private ?Question $question = null;
public function getAnswers(): array
{
return $this->answers;
}
public function setAnswers(array $answers): self
{
$this->answers = $answers;
return $this;
}
public function getCurrentQuestion(): ?Question
{
return $this->currentQuestion;
}
public function setCurrentQuestion(?Question $currentQuestion): self
{
$this->currentQuestion = $currentQuestion;
return $this;
}
public function getQuestion(): ?Question
{
return $this->question;
}
public function setQuestion(?Question $question): self
{
$this->question = $question;
return $this;
}
#[SerializedName('question')]
#[Groups(['question:read'])]
public function getQuestionId(): ?Uuid
{
return $this->getQuestion()->getId();
}
#[SerializedName('currentQuestion')]
#[Groups(['question:read'])]
public function getCurrentQuestionId(): ?Uuid
{
return $this->getCurrentQuestion()?->getId();
}
}