src/Entity/Message.php line 10

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\MessageRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassMessageRepository::class)]
  7. class Message
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255)]
  14.     private ?string $Nom null;
  15.     #[ORM\Column(length255)]
  16.     private ?string $Email null;
  17.     #[ORM\Column(length255)]
  18.     private ?string $Objet null;
  19.     #[ORM\Column(typeTypes::TEXT)]
  20.     private ?string $Message null;
  21.     public function getId(): ?int
  22.     {
  23.         return $this->id;
  24.     }
  25.     public function getNom(): ?string
  26.     {
  27.         return $this->Nom;
  28.     }
  29.     public function setNom(string $Nom): self
  30.     {
  31.         $this->Nom $Nom;
  32.         return $this;
  33.     }
  34.     public function getEmail(): ?string
  35.     {
  36.         return $this->Email;
  37.     }
  38.     public function setEmail(string $Email): self
  39.     {
  40.         $this->Email $Email;
  41.         return $this;
  42.     }
  43.     public function getObjet(): ?string
  44.     {
  45.         return $this->Objet;
  46.     }
  47.     public function setObjet(string $Objet): self
  48.     {
  49.         $this->Objet $Objet;
  50.         return $this;
  51.     }
  52.     public function getMessage(): ?string
  53.     {
  54.         return $this->Message;
  55.     }
  56.     public function setMessage(string $Message): self
  57.     {
  58.         $this->Message $Message;
  59.         return $this;
  60.     }
  61. }