src/Entity/Result.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Result
  6.  *
  7.  * @ORM\Table(name="result")
  8.  * @ORM\Entity(repositoryClass="App\Repository\ResultRepository")
  9.  */
  10. class Result
  11. {
  12.     const STATUS = [
  13.         => 'En attente',
  14.         => 'Fait'
  15.     ];
  16.     
  17.     /**
  18.      * @var string
  19.      * @ORM\Id
  20.      * @ORM\Column(name="id", type="string")
  21.      */
  22.     private $id;
  23.     /**
  24.      * @var \DateTime
  25.      *
  26.      * @ORM\Column(name="date", type="datetime")
  27.      */
  28.     private $date;
  29.     /**
  30.      *
  31.      * @ORM\ManyToOne(targetEntity="Survey", inversedBy="results" ,cascade={"persist"})
  32.      * @ORM\JoinColumn(name="survey_id", referencedColumnName="id", onDelete="SET NULL")
  33.      */
  34.     private $survey;
  35.     /**
  36.      *
  37.      * @ORM\OneToMany(targetEntity="Answer", mappedBy="result" ,cascade={"persist"})
  38.      */
  39.     private $answers;
  40.     /**
  41.      * @var int
  42.      *
  43.      * @ORM\Column(name="status", type="integer")
  44.      */
  45.     private $status;
  46.     /**
  47.      * @var string
  48.      *
  49.      * @ORM\Column(name="visits", type="integer")
  50.      */
  51.     private $visits;
  52.     
  53.     /**
  54.      *
  55.      * @ORM\ManyToOne(targetEntity="User", inversedBy="results")
  56.      * @ORM\JoinColumn(onDelete="SET NULL")
  57.      */
  58.     private $user;
  59.     public function __construct()
  60.     {
  61.     }
  62.     /**
  63.      * Get id
  64.      *
  65.      * @return string
  66.      */
  67.     public function getId()
  68.     {
  69.         return $this->id;
  70.     }
  71.     /**
  72.      * Set date
  73.      *
  74.      * @param \DateType $date
  75.      *
  76.      * @return Result
  77.      */
  78.     public function setDate($date)
  79.     {
  80.         $this->date $date;
  81.         return $this;
  82.     }
  83.     /**
  84.      * Get date
  85.      *
  86.      * @return \DateType
  87.      */
  88.     public function getDate()
  89.     {
  90.         return $this->date;
  91.     }
  92.     /**
  93.      * Set survey
  94.      *
  95.      * @param \App\Entity\Survey $survey
  96.      *
  97.      * @return Result
  98.      */
  99.     public function setSurvey(\App\Entity\Survey $survey)
  100.     {
  101.         $this->survey $survey;
  102.         return $this;
  103.     }
  104.     /**
  105.      * Get survey
  106.      *
  107.      * @return int
  108.      */
  109.     public function getSurvey()
  110.     {
  111.         return $this->survey;
  112.     }
  113.     /**
  114.      * Set answers
  115.      *
  116.      * @param \App\Entity\Answer $answers
  117.      *
  118.      * @return Result
  119.      */
  120.     public function setAnswers(\App\Entity\Answer $answers)
  121.     {
  122.         $this->answers $answers;
  123.         return $this;
  124.     }
  125.     /**
  126.      * Get answers
  127.      *
  128.      * @return int
  129.      */
  130.     public function getAnswers()
  131.     {
  132.         return $this->answers;
  133.     }
  134.     /**
  135.      * Set status
  136.      *
  137.      * @param integer $status
  138.      *
  139.      * @return Result
  140.      */
  141.     public function setStatus($status)
  142.     {
  143.         $this->status $status;
  144.         return $this;
  145.     }
  146.     /**
  147.      * Get status
  148.      *
  149.      * @return int
  150.      */
  151.     public function getStatus()
  152.     {
  153.         return $this->status;
  154.     }
  155.     /**
  156.      * Set visits
  157.      *
  158.      * @param integer $visits
  159.      *
  160.      * @return Result
  161.      */
  162.     public function setVisits($visits)
  163.     {
  164.         $this->visits $visits;
  165.         return $this;
  166.     }
  167.     /**
  168.      * Get visits
  169.      *
  170.      * @return int
  171.      */
  172.     public function getVisits()
  173.     {
  174.         return $this->visits;
  175.     }
  176.     /**
  177.      * Set id
  178.      *
  179.      * @param string $id
  180.      *
  181.      * @return Result
  182.      */
  183.     public function setId($id)
  184.     {
  185.         $this->id $id;
  186.         return $this;
  187.     }
  188.     /**
  189.      * Add answer
  190.      *
  191.      * @param \App\Entity\Answer $answer
  192.      *
  193.      * @return Result
  194.      */
  195.     public function addAnswer(\App\Entity\Answer $answer)
  196.     {
  197.         $this->answers[] = $answer;
  198.         return $this;
  199.     }
  200.     /**
  201.      * Remove answer
  202.      *
  203.      * @param \App\Entity\Answer $answer
  204.      */
  205.     public function removeAnswer(\App\Entity\Answer $answer)
  206.     {
  207.         $this->answers->removeElement($answer);
  208.     }
  209.     /**
  210.      * Set user
  211.      *
  212.      * @param \App\Entity\User $user
  213.      *
  214.      * @return Result
  215.      */
  216.     public function setUser(\App\Entity\User $user null)
  217.     {
  218.         $this->user $user;
  219.         return $this;
  220.     }
  221.     /**
  222.      * Get user
  223.      *
  224.      * @return \App\Entity\User
  225.      */
  226.     public function getUser()
  227.     {
  228.         return $this->user;
  229.     }
  230. }