src/Entity/Notification.php line 11

  1. <?php
  2. namespace App\Entity;
  3. use ApiPlatform\Core\Annotation\ApiResource;
  4. use App\Repository\NotificationRepository;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ApiResource]
  7. #[ORM\Entity(repositoryClassNotificationRepository::class)]
  8. class Notification
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column(type'integer')]
  13.     private $id;
  14.     #[ORM\Column(type'string'length255nullabletrue)]
  15.     private ?string $title null;
  16.     #[ORM\Column(type'text')]
  17.     private ?string $message null;
  18.     #[ORM\Column(type'datetime'nullabletrue)]
  19.     private ?\DateTimeInterface $createdAt null;
  20.     public function getId(): ?int
  21.     {
  22.         return $this->id;
  23.     }
  24.     public function getTitle(): ?string
  25.     {
  26.         return $this->title;
  27.     }
  28.     public function setTitle(?string $title): self
  29.     {
  30.         $this->title $title;
  31.         return $this;
  32.     }
  33.     public function getMessage(): ?string
  34.     {
  35.         return $this->message;
  36.     }
  37.     public function setMessage(string $message): self
  38.     {
  39.         $this->message $message;
  40.         return $this;
  41.     }
  42.     public function getCreatedAt(): ?\DateTimeInterface
  43.     {
  44.         return $this->createdAt;
  45.     }
  46.     public function setCreatedAt(?\DateTimeInterface $createdAt): self
  47.     {
  48.         $this->createdAt $createdAt;
  49.         return $this;
  50.     }
  51. }