src\Entity\Commentaire.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CommentaireRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=CommentaireRepository::class)
  7.  */
  8. class Commentaire
  9. {
  10.     /**
  11.      * @ORM\Id()
  12.      * @ORM\GeneratedValue()
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\ManyToOne(targetEntity=User::class)
  18.      * @ORM\JoinColumn(nullable=false)
  19.      */
  20.     private $user;
  21.     /**
  22.      * @ORM\ManyToOne(targetEntity=News::class, inversedBy="commentaires")
  23.      * @ORM\JoinColumn(nullable=false)
  24.      */
  25.     private $news;
  26.     /**
  27.      * @ORM\Column(type="text")
  28.      */
  29.     private $message;
  30.     /**
  31.      * @ORM\Column(type="boolean", nullable=true)
  32.      */
  33.     private $status;
  34.     /**
  35.      * @ORM\Column(type="datetime")
  36.      */
  37.     private $create_at;
  38.      public function __construct()
  39.     {
  40.         //$this->type = new ArrayCollection();
  41.         $this->status=false;
  42.         $this->create_at=new \DateTime();
  43.         //$this->commentaires = new ArrayCollection();
  44.     }
  45.     public function getId(): ?int
  46.     {
  47.         return $this->id;
  48.     }
  49.     public function getUser(): ?User
  50.     {
  51.         return $this->user;
  52.     }
  53.     public function setUser(?User $user): self
  54.     {
  55.         $this->user $user;
  56.         return $this;
  57.     }
  58.     public function getNews(): ?News
  59.     {
  60.         return $this->news;
  61.     }
  62.     public function setNews(?News $news): self
  63.     {
  64.         $this->news $news;
  65.         return $this;
  66.     }
  67.     public function getMessage(): ?string
  68.     {
  69.         return $this->message;
  70.     }
  71.     public function setMessage(string $message): self
  72.     {
  73.         $this->message $message;
  74.         return $this;
  75.     }
  76.     public function getStatus(): ?bool
  77.     {
  78.         return $this->status;
  79.     }
  80.     public function setStatus(bool $status): self
  81.     {
  82.         $this->status $status;
  83.         return $this;
  84.     }
  85.     public function getCreateAt(): ?\DateTimeInterface
  86.     {
  87.         return $this->create_at;
  88.     }
  89.     public function setCreateAt(\DateTimeInterface $create_at): self
  90.     {
  91.         $this->create_at $create_at;
  92.         return $this;
  93.     }
  94. }