src/Entity/Notification.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\NotificationRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassNotificationRepository::class)]
  7. class Notification
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\ManyToOne(inversedBy'notifications')]
  14.     private ?User $user null;
  15.     #[ORM\Column]
  16.     private array $content = [];
  17.     #[ORM\Column(length255)]
  18.     private ?string $link null;
  19.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  20.     private ?\DateTimeInterface $createdAt null;
  21.     public function getId(): ?int
  22.     {
  23.         return $this->id;
  24.     }
  25.     public function getUser(): ?User
  26.     {
  27.         return $this->user;
  28.     }
  29.     public function setUser(?User $user): self
  30.     {
  31.         $this->user $user;
  32.         return $this;
  33.     }
  34.     public function getContent(): array
  35.     {
  36.         return $this->content;
  37.     }
  38.     public function setContent(array $content): self
  39.     {
  40.         $this->content $content;
  41.         return $this;
  42.     }
  43.     public function getLink(): ?string
  44.     {
  45.         return $this->link;
  46.     }
  47.     public function setLink(string $link): self
  48.     {
  49.         $this->link $link;
  50.         return $this;
  51.     }
  52.     public function getCreatedAt(): ?\DateTimeInterface
  53.     {
  54.         return $this->createdAt;
  55.     }
  56.     public function setCreatedAt(\DateTimeInterface $createdAt): self
  57.     {
  58.         $this->createdAt $createdAt;
  59.         return $this;
  60.     }
  61. }