src/Entity/Newsletter.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\NewsletterRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Symfony\Component\Validator\Constraints as Assert;
  6. /**
  7.  * @ORM\Entity(repositoryClass=NewsletterRepository::class)
  8.  */
  9. class Newsletter
  10. {
  11.     public function __toString()
  12.     {
  13.         return "#" $this->id " " $this->getEmail();
  14.     }
  15.     public function __construct()
  16.     {
  17.         $this->date = new \DateTime();
  18.     }
  19.     /**
  20.      * @ORM\Id
  21.      * @ORM\GeneratedValue
  22.      * @ORM\Column(type="integer")
  23.      */
  24.     private $id;
  25.     /**
  26.      * @Assert\Email()
  27.      * @Assert\NotBlank()
  28.      * @ORM\Column(type="string", length=255, nullable=true)
  29.      */
  30.     private $email;
  31.     /**
  32.      * @ORM\Column(type="datetime", nullable=true)
  33.      */
  34.     private $date;
  35.     /**
  36.      * @ORM\Column(type="string", length=255, nullable=true)
  37.      */
  38.     private $name;
  39.     public function getId(): ?int
  40.     {
  41.         return $this->id;
  42.     }
  43.     public function getEmail(): ?string
  44.     {
  45.         return $this->email;
  46.     }
  47.     public function setEmail(?string $email): self
  48.     {
  49.         $this->email $email;
  50.         return $this;
  51.     }
  52.     public function getDate(): ?\DateTimeInterface
  53.     {
  54.         return $this->date;
  55.     }
  56.     public function setDate(?\DateTimeInterface $date): self
  57.     {
  58.         $this->date $date;
  59.         return $this;
  60.     }
  61.     public function getName(): ?string
  62.     {
  63.         return $this->name;
  64.     }
  65.     public function setName(?string $name): self
  66.     {
  67.         $this->name $name;
  68.         return $this;
  69.     }
  70. }