src/Entity/Newsletter.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\NewsletterRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=NewsletterRepository::class)
  7.  */
  8. class Newsletter
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255)
  18.      */
  19.     private $subject;
  20.     /**
  21.      * @ORM\Column(type="text", nullable=true)
  22.      */
  23.     private $body;
  24.     /**
  25.      * @ORM\Column(type="datetime")
  26.      */
  27.     private $createdAt;
  28.     /**
  29.      * @ORM\ManyToOne(targetEntity=SubscriberGroup::class)
  30.      * @ORM\JoinColumn(nullable=true)
  31.      */
  32.     private $subscriberGroup;
  33.     public function __construct() 
  34.     {
  35.         $this->createdAt = new \DateTime('now', new \DateTimeZone('Europe/Paris'));
  36.     }
  37.     public function getId(): ?int
  38.     {
  39.         return $this->id;
  40.     }
  41.     public function getSubject(): ?string
  42.     {
  43.         return $this->subject;
  44.     }
  45.     public function setSubject(string $subject): self
  46.     {
  47.         $this->subject $subject;
  48.         return $this;
  49.     }
  50.     public function getBody(): ?string
  51.     {
  52.         return $this->body;
  53.     }
  54.     public function setBody(?string $body): self
  55.     {
  56.         $this->body $body;
  57.         return $this;
  58.     }
  59.     public function getCreatedAt(): ?\DateTimeInterface
  60.     {
  61.         return $this->createdAt;
  62.     }
  63.     public function setCreatedAt(\DateTimeInterface $createdAt): self
  64.     {
  65.         $this->createdAt $createdAt;
  66.         return $this;
  67.     }
  68.     public function getSubscriberGroup(): ?SubscriberGroup
  69.     {
  70.         return $this->subscriberGroup;
  71.     }
  72.     public function setSubscriberGroup(?SubscriberGroup $subscriberGroup): self
  73.     {
  74.         $this->subscriberGroup $subscriberGroup;
  75.         return $this;
  76.     }
  77. }