src/Entity/PNotification.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PNotificationRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassPNotificationRepository::class)]
  7. class PNotification
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\ManyToOne(inversedBy'notifications')]
  14.     private ?Users $user null;
  15.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  16.     private ?string $message null;
  17.     #[ORM\Column(nullabletrue)]
  18.     private ?bool $seen null;
  19.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  20.     private ?\DateTimeInterface $created null;
  21.     public function __construct()
  22.     {
  23.         $this->created = new \DateTime();
  24.         $this->seen false;
  25.     }
  26.     public function getId(): ?int
  27.     {
  28.         return $this->id;
  29.     }
  30.     public function getUser(): ?Users
  31.     {
  32.         return $this->user;
  33.     }
  34.     public function setUser(?Users $user): static
  35.     {
  36.         $this->user $user;
  37.         return $this;
  38.     }
  39.     public function getMessage(): ?string
  40.     {
  41.         return $this->message;
  42.     }
  43.     public function setMessage(?string $message): static
  44.     {
  45.         $this->message $message;
  46.         return $this;
  47.     }
  48.     public function isSeen(): ?bool
  49.     {
  50.         return $this->seen;
  51.     }
  52.     public function setSeen(?bool $seen): static
  53.     {
  54.         $this->seen $seen;
  55.         return $this;
  56.     }
  57.     public function getCreated(): ?\DateTimeInterface
  58.     {
  59.         return $this->created;
  60.     }
  61.     public function setCreated(?\DateTimeInterface $created): static
  62.     {
  63.         $this->created $created;
  64.         return $this;
  65.     }
  66. }