src/Entity/Choice.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Gedmo\Mapping\Annotation as Gedmo;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * Choice
  7.  *
  8.  * @ORM\Table(name="choice")
  9.  * @ORM\Entity(repositoryClass="Gedmo\Sortable\Entity\Repository\SortableRepository")
  10.  */
  11. class Choice
  12. {
  13.     /**
  14.      * @var int
  15.      *
  16.      * @ORM\Column(name="id", type="integer")
  17.      * @ORM\Id
  18.      * @ORM\GeneratedValue(strategy="AUTO")
  19.      */
  20.     private $id;
  21.     /**
  22.      * @ORM\ManyToOne(targetEntity="Question", inversedBy="choices" , cascade={"persist"})
  23.      * @ORM\JoinColumn(name="question_id", referencedColumnName="id", onDelete="SET NULL")
  24.      */
  25.     private $question;
  26.     /**
  27.      * @var string
  28.      *
  29.      * @ORM\Column(name="name", type="string", length=255)
  30.      */
  31.     private $name;
  32.     /**
  33.      * @var integer     
  34.      * @Gedmo\SortablePosition
  35.      * @ORM\Column(name="position", type="integer")
  36.      */
  37.     private $position;
  38.     /**
  39.      * Get id
  40.      *
  41.      * @return int
  42.      */
  43.     public function getId()
  44.     {
  45.         return $this->id;
  46.     }
  47.     /**
  48.      * Set question
  49.      *
  50.      * @param integer $question
  51.      *
  52.      * @return Choice
  53.      */
  54.     public function setQuestion($question)
  55.     {
  56.         $this->question $question;
  57.         return $this;
  58.     }
  59.     /**
  60.      * Get question
  61.      *
  62.      * @return int
  63.      */
  64.     public function getQuestion()
  65.     {
  66.         return $this->question;
  67.     }
  68.     /**
  69.      * Set name
  70.      *
  71.      * @param string $name
  72.      *
  73.      * @return Choice
  74.      */
  75.     public function setName($name)
  76.     {
  77.         $this->name $name;
  78.         return $this;
  79.     }
  80.     /**
  81.      * Get name
  82.      *
  83.      * @return string
  84.      */
  85.     public function getName()
  86.     {
  87.         return $this->name;
  88.     }
  89.     /**
  90.      * Set position
  91.      *
  92.      * @param integer $position
  93.      *
  94.      * @return Choice
  95.      */
  96.     public function setPosition($position)
  97.     {
  98.         $this->position $position;
  99.         return $this;
  100.     }
  101.     /**
  102.      * Get position
  103.      *
  104.      * @return int
  105.      */
  106.     public function getPosition()
  107.     {
  108.         return $this->position;
  109.     }
  110.     
  111.     public function addQuestion(\App\Entity\Question $question)
  112.     {
  113.         $this->question $question;
  114.     }
  115.     
  116. }