src/Entity/Answer.php line 13

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