src/Entity/Newsletter.php line 11

  1. <?php
  2. namespace App\Entity;
  3. use ApiPlatform\Metadata\ApiResource;
  4. use App\Repository\NewsletterRepository;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassNewsletterRepository::class)]
  7. #[ApiResource]
  8. class Newsletter
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(length255)]
  15.     private ?string $email null;
  16.     #[ORM\Column]
  17.     private ?\DateTimeImmutable $createdAt null;
  18.     public function getId(): ?int
  19.     {
  20.         return $this->id;
  21.     }
  22.     public function getEmail(): ?string
  23.     {
  24.         return $this->email;
  25.     }
  26.     public function setEmail(string $email): static
  27.     {
  28.         $this->email $email;
  29.         return $this;
  30.     }
  31.     public function getCreatedAt(): ?\DateTimeImmutable
  32.     {
  33.         return $this->createdAt;
  34.     }
  35.     public function setCreatedAt(\DateTimeImmutable $createdAt): static
  36.     {
  37.         $this->createdAt $createdAt;
  38.         return $this;
  39.     }
  40. }