src/Entity/Notif.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\NotifRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=NotifRepository::class)
  7.  */
  8. class Notif
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\ManyToOne(targetEntity=User::class, inversedBy="notifs")
  18.      * @ORM\JoinColumn(nullable=false)
  19.      */
  20.     private $recepient;
  21.     /**
  22.      * @ORM\Column(type="text")
  23.      */
  24.     private $body;
  25.     /**
  26.      * @ORM\Column(type="datetime")
  27.      */
  28.     private $created_at;
  29.     /**
  30.      * @ORM\Column(type="datetime", nullable=true)
  31.      */
  32.     private $read_at;
  33.     public function getId(): ?int
  34.     {
  35.         return $this->id;
  36.     }
  37.     public function getRecepient(): ?User
  38.     {
  39.         return $this->recepient;
  40.     }
  41.     public function setRecepient(?User $recepient): self
  42.     {
  43.         $this->recepient $recepient;
  44.         return $this;
  45.     }
  46.     public function getBody(): ?string
  47.     {
  48.         return $this->body;
  49.     }
  50.     public function setBody(string $body): self
  51.     {
  52.         $this->body $body;
  53.         return $this;
  54.     }
  55.     public function getCreatedAt(): ?\DateTimeInterface
  56.     {
  57.         return $this->created_at;
  58.     }
  59.     public function setCreatedAt(\DateTimeInterface $created_at): self
  60.     {
  61.         $this->created_at $created_at;
  62.         return $this;
  63.     }
  64.     public function getReadAt(): ?\DateTimeInterface
  65.     {
  66.         return $this->read_at;
  67.     }
  68.     public function setReadAt(?\DateTimeInterface $read_at): self
  69.     {
  70.         $this->read_at $read_at;
  71.         return $this;
  72.     }
  73. }