src/Entity/Question.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Model\Entity;
  4. use App\Repository\QuestionRepository;
  5. use Doctrine\Common\Collections\ArrayCollection;
  6. use Doctrine\Common\Collections\Collection;
  7. use Doctrine\ORM\Mapping as ORM;
  8. use Symfony\Component\Serializer\Annotation\Groups;
  9. #[ORM\Entity(repositoryClassQuestionRepository::class)]
  10. class Question extends Entity
  11. {
  12.     #[ORM\Column(length255)]
  13.     #[Groups(['question:read'])]
  14.     private ?string $question null;
  15.     #[ORM\Column(length50)]
  16.     #[Groups(['question:read'])]
  17.     private ?string $name null;
  18.     #[ORM\Column]
  19.     private ?int $position null;
  20.     #[ORM\Column(length40)]
  21.     #[Groups(['question:read'])]
  22.     private ?string $answerType null;
  23.     #[ORM\Column(length40)]
  24.     #[Groups(['question:read'])]
  25.     private ?string $answerInput null;
  26.     #[ORM\Column]
  27.     #[Groups(['question:read'])]
  28.     private array $choices = [];
  29.     #[ORM\ManyToOne(inversedBy'questions')]
  30.     #[ORM\JoinColumn(nullablefalse)]
  31.     private ?ConfigurationType $type null;
  32.     #[ORM\OneToMany(mappedBy'currentQuestion'targetEntityNextQuestion::class, orphanRemovaltrue)]
  33.     #[Groups(['question:read'])]
  34.     private Collection $nextQuestions;
  35.     #[ORM\OneToMany(mappedBy'question'targetEntityNextQuestion::class, orphanRemovaltrue)]
  36.     private Collection $previousQuestions;
  37.     public function __construct()
  38.     {
  39.         $this->nextQuestions = new ArrayCollection();
  40.         $this->previousQuestions = new ArrayCollection();
  41.     }
  42.     public function getQuestion(): ?string
  43.     {
  44.         return $this->question;
  45.     }
  46.     public function setQuestion(string $question): self
  47.     {
  48.         $this->question $question;
  49.         return $this;
  50.     }
  51.     public function getName(): ?string
  52.     {
  53.         return $this->name;
  54.     }
  55.     public function setName(string $name): self
  56.     {
  57.         $this->name $name;
  58.         return $this;
  59.     }
  60.     public function getType(): ?ConfigurationType
  61.     {
  62.         return $this->type;
  63.     }
  64.     public function setType(?ConfigurationType $type): self
  65.     {
  66.         $this->type $type;
  67.         return $this;
  68.     }
  69.     /**
  70.      * @return Collection<int, NextQuestion>
  71.      */
  72.     public function getNextQuestions(): Collection
  73.     {
  74.         return $this->nextQuestions;
  75.     }
  76.     public function addNextQuestion(NextQuestion $nextQuestion): self
  77.     {
  78.         if (!$this->nextQuestions->contains($nextQuestion)) {
  79.             $this->nextQuestions->add($nextQuestion);
  80.             $nextQuestion->setCurrentQuestion($this);
  81.         }
  82.         return $this;
  83.     }
  84.     public function removeNextQuestion(NextQuestion $nextQuestion): self
  85.     {
  86.         if ($this->nextQuestions->removeElement($nextQuestion)) {
  87.             // set the owning side to null (unless already changed)
  88.             if ($nextQuestion->getCurrentQuestion() === $this) {
  89.                 $nextQuestion->setCurrentQuestion(null);
  90.             }
  91.         }
  92.         return $this;
  93.     }
  94.     /**
  95.      * @return Collection<int, NextQuestion>
  96.      */
  97.     public function getPreviousQuestions(): Collection
  98.     {
  99.         return $this->previousQuestions;
  100.     }
  101.     public function addPreviousQuestion(NextQuestion $previousQuestion): self
  102.     {
  103.         if (!$this->previousQuestions->contains($previousQuestion)) {
  104.             $this->previousQuestions->add($previousQuestion);
  105.             $previousQuestion->setQuestion($this);
  106.         }
  107.         return $this;
  108.     }
  109.     public function removePreviousQuestion(NextQuestion $previousQuestion): self
  110.     {
  111.         if ($this->previousQuestions->removeElement($previousQuestion)) {
  112.             // set the owning side to null (unless already changed)
  113.             if ($previousQuestion->getQuestion() === $this) {
  114.                 $previousQuestion->setQuestion(null);
  115.             }
  116.         }
  117.         return $this;
  118.     }
  119.     public function getPosition(): ?int
  120.     {
  121.         return $this->position;
  122.     }
  123.     public function setPosition(int $position): self
  124.     {
  125.         $this->position $position;
  126.         return $this;
  127.     }
  128.     public function getAnswerType(): ?string
  129.     {
  130.         return $this->answerType;
  131.     }
  132.     public function setAnswerType(string $answerType): self
  133.     {
  134.         $this->answerType $answerType;
  135.         return $this;
  136.     }
  137.     public function getAnswerInput(): ?string
  138.     {
  139.         return $this->answerInput;
  140.     }
  141.     public function setAnswerInput(string $answerInput): self
  142.     {
  143.         $this->answerInput $answerInput;
  144.         return $this;
  145.     }
  146.     public function getChoices(): array
  147.     {
  148.         return $this->choices;
  149.     }
  150.     public function setChoices(array $choices): self
  151.     {
  152.         $this->choices $choices;
  153.         return $this;
  154.     }
  155. }