src/Entity/Review.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Gedmo\Mapping\Annotation as Gedmo;
  5. /**
  6.  * @ORM\Entity(repositoryClass="App\Repository\ReviewRepository")
  7.  *
  8.  * @ORM\Table(name="review")
  9.  */
  10. class Review
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      *
  15.      * @ORM\Column(type="bigint")
  16.      *
  17.      * @ORM\GeneratedValue(strategy="AUTO")
  18.      */
  19.     protected $id;
  20.     /**
  21.      * @ORM\OneToOne(targetEntity="App\Entity\User")
  22.      *
  23.      * @ORM\JoinColumn(name="user", referencedColumnName="id")
  24.      */
  25.     protected $user;
  26.     /**
  27.      * @ORM\Column(type="text", nullable=true)
  28.      */
  29.     protected $comment;
  30.     /**
  31.      * @ORM\Column(type="integer")
  32.      */
  33.     protected $note;
  34.     /**
  35.      * @ORM\Column(type="text", nullable=true)
  36.      */
  37.     protected $answer;
  38.     /**
  39.      * @ORM\Column(type="boolean")
  40.      */
  41.     protected $published;
  42.     /**
  43.      * @Gedmo\Timestampable(on="create")
  44.      *
  45.      * @ORM\Column(type="datetime", name="created_at")
  46.      */
  47.     protected $createdAt;
  48.     /**
  49.      * @Gedmo\Timestampable(on="update")
  50.      *
  51.      * @ORM\Column(type="datetime", name="updated_at")
  52.      */
  53.     protected $updatedAt;
  54.     public function __construct()
  55.     {
  56.         $this->published false;
  57.     }
  58.     public function getId()
  59.     {
  60.         return $this->id;
  61.     }
  62.     public function getUser()
  63.     {
  64.         return $this->user;
  65.     }
  66.     public function setUser($user): void
  67.     {
  68.         $this->user $user;
  69.     }
  70.     public function getComment()
  71.     {
  72.         return $this->comment;
  73.     }
  74.     public function setComment($comment): void
  75.     {
  76.         $this->comment $comment;
  77.     }
  78.     public function getNote()
  79.     {
  80.         return $this->note;
  81.     }
  82.     public function setNote($note): void
  83.     {
  84.         $this->note $note;
  85.     }
  86.     public function getAnswer()
  87.     {
  88.         return $this->answer;
  89.     }
  90.     public function setAnswer($answer): void
  91.     {
  92.         $this->answer $answer;
  93.     }
  94.     public function isPublished()
  95.     {
  96.         return $this->published;
  97.     }
  98.     public function setPublished($published): void
  99.     {
  100.         $this->published $published;
  101.     }
  102.     public function getCreatedAt()
  103.     {
  104.         return $this->createdAt;
  105.     }
  106.     public function setCreatedAt(\DateTime $createdAt): void
  107.     {
  108.         $this->createdAt $createdAt;
  109.     }
  110.     public function getUpdatedAt()
  111.     {
  112.         return $this->updatedAt;
  113.     }
  114.     public function setUpdatedAt(\DateTime $updatedAt): void
  115.     {
  116.         $this->updatedAt $updatedAt;
  117.     }
  118. }