src/Entity/Questionnaire.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\QuestionnaireRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=QuestionnaireRepository::class)
  9.  */
  10. class Questionnaire
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="string", length=255)
  20.      */
  21.     private $name;
  22.     /**
  23.      * @ORM\OneToMany(targetEntity=Question::class, mappedBy="questionnaire", orphanRemoval=true)
  24.      */
  25.     private $questions;
  26.     /**
  27.      * @ORM\OneToOne(targetEntity=Rank::class, cascade={"persist", "remove"})
  28.      * @ORM\JoinColumn(nullable=false)
  29.      */
  30.     private $rank =1;
  31.     public function __construct()
  32.     {
  33.         $this->questions = new ArrayCollection();
  34.     }
  35.     public function getId(): ?int
  36.     {
  37.         return $this->id;
  38.     }
  39.     public function getName(): ?string
  40.     {
  41.         return $this->name;
  42.     }
  43.     public function setName(string $name): self
  44.     {
  45.         $this->name $name;
  46.         return $this;
  47.     }
  48.     /**
  49.      * @return Collection<int, Question>
  50.      */
  51.     public function getQuestions(): Collection
  52.     {
  53.         return $this->questions;
  54.     }
  55.     public function addQuestion(Question $question): self
  56.     {
  57.         if (!$this->questions->contains($question)) {
  58.             $this->questions[] = $question;
  59.             $question->setQuestionnaire($this);
  60.         }
  61.         return $this;
  62.     }
  63.     public function removeQuestion(Question $question): self
  64.     {
  65.         if ($this->questions->removeElement($question)) {
  66.             // set the owning side to null (unless already changed)
  67.             if ($question->getQuestionnaire() === $this) {
  68.                 $question->setQuestionnaire(null);
  69.             }
  70.         }
  71.         return $this;
  72.     }
  73.     public function getRank(): ?Rank
  74.     {
  75.         return $this->rank;
  76.     }
  77.     public function setRank(Rank $rank): self
  78.     {
  79.         $this->rank $rank;
  80.         return $this;
  81.     }
  82. }