src/Entity/NextQuestion.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Model\Entity;
  4. use App\Repository\NextQuestionRepository;
  5. use Doctrine\DBAL\Types\Types;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Symfony\Component\Serializer\Annotation\Groups;
  8. use Symfony\Component\Serializer\Annotation\SerializedName;
  9. use Symfony\Component\Uid\Uuid;
  10. #[ORM\Entity(repositoryClassNextQuestionRepository::class)]
  11. class NextQuestion extends Entity
  12. {
  13.     #[ORM\Column(typeTypes::JSON)]
  14.     #[Groups(['question:read'])]
  15.     private array $answers = [];
  16.     #[ORM\ManyToOne(inversedBy'nextQuestions')]
  17.     #[ORM\JoinColumn(nullablefalse)]
  18.     private ?Question $currentQuestion null;
  19.     #[ORM\ManyToOne(inversedBy'previousQuestions')]
  20.     #[ORM\JoinColumn(nullablefalse)]
  21.     private ?Question $question null;
  22.     public function getAnswers(): array
  23.     {
  24.         return $this->answers;
  25.     }
  26.     public function setAnswers(array $answers): self
  27.     {
  28.         $this->answers $answers;
  29.         return $this;
  30.     }
  31.     public function getCurrentQuestion(): ?Question
  32.     {
  33.         return $this->currentQuestion;
  34.     }
  35.     public function setCurrentQuestion(?Question $currentQuestion): self
  36.     {
  37.         $this->currentQuestion $currentQuestion;
  38.         return $this;
  39.     }
  40.     public function getQuestion(): ?Question
  41.     {
  42.         return $this->question;
  43.     }
  44.     public function setQuestion(?Question $question): self
  45.     {
  46.         $this->question $question;
  47.         return $this;
  48.     }
  49.     #[SerializedName('question')]
  50.     #[Groups(['question:read'])]
  51.     public function getQuestionId(): ?Uuid
  52.     {
  53.         return $this->getQuestion()->getId();
  54.     }
  55.     #[SerializedName('currentQuestion')]
  56.     #[Groups(['question:read'])]
  57.     public function getCurrentQuestionId(): ?Uuid
  58.     {
  59.         return $this->getCurrentQuestion()?->getId();
  60.     }
  61. }