src/Entity/Contact.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ContactRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassContactRepository::class)]
  6. class Contact
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column(type'integer')]
  11.     private $id;
  12.     #[ORM\Column(type'string'length90)]
  13.     private $fullName;
  14.     #[ORM\Column(type'string'length45)]
  15.     private $email;
  16.     #[ORM\Column(type'string'length255)]
  17.     private $subject;
  18.     #[ORM\Column(type'text')]
  19.     private $message;
  20.     #[ORM\Column(type'date')]
  21.     private $createdAt;
  22.     public function getId(): ?int
  23.     {
  24.         return $this->id;
  25.     }
  26.     public function getFullName(): ?string
  27.     {
  28.         return $this->fullName;
  29.     }
  30.     public function setFullName(string $fullName): self
  31.     {
  32.         $this->fullName $fullName;
  33.         return $this;
  34.     }
  35.     public function getEmail(): ?string
  36.     {
  37.         return $this->email;
  38.     }
  39.     public function setEmail(string $email): self
  40.     {
  41.         $this->email $email;
  42.         return $this;
  43.     }
  44.     public function getSubject(): ?string
  45.     {
  46.         return $this->subject;
  47.     }
  48.     public function setSubject(string $subject): self
  49.     {
  50.         $this->subject $subject;
  51.         return $this;
  52.     }
  53.     public function getMessage(): ?string
  54.     {
  55.         return $this->message;
  56.     }
  57.     public function setMessage(string $message): self
  58.     {
  59.         $this->message $message;
  60.         return $this;
  61.     }
  62.     public function getCreatedAt(): ?\DateTimeInterface
  63.     {
  64.         return $this->createdAt;
  65.     }
  66.     public function setCreatedAt(\DateTimeInterface $createdAt): self
  67.     {
  68.         $this->createdAt $createdAt;
  69.         return $this;
  70.     }
  71. }