src/Entity/Contact.php line 10

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