src/Entity/Contact.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ContactRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=ContactRepository::class)
  7.  */
  8. class Contact
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=12)
  18.      */
  19.     private $civilite;
  20.     /**
  21.      * @ORM\Column(type="string", length=80)
  22.      */
  23.     private $nom;
  24.     /**
  25.      * @ORM\Column(type="string", length=50)
  26.      */
  27.     private $email;
  28.     /**
  29.      * @ORM\Column(type="string", length=50)
  30.      */
  31.     private $telephone;
  32.     /**
  33.      * @ORM\Column(type="string", length=255)
  34.      */
  35.     private $objet;
  36.     /**
  37.      * @ORM\Column(type="text")
  38.      */
  39.     private $message;
  40.     /**
  41.      * @ORM\Column(type="string", length=255, nullable=true)
  42.      */
  43.     private $requete;
  44.     public function getId(): ?int
  45.     {
  46.         return $this->id;
  47.     }
  48.     public function getCivilite(): ?string
  49.     {
  50.         return $this->civilite;
  51.     }
  52.     public function setCivilite(string $civilite): self
  53.     {
  54.         $this->civilite $civilite;
  55.         return $this;
  56.     }
  57.     public function getNom(): ?string
  58.     {
  59.         return $this->nom;
  60.     }
  61.     public function setNom(string $nom): self
  62.     {
  63.         $this->nom $nom;
  64.         return $this;
  65.     }
  66.     public function getEmail(): ?string
  67.     {
  68.         return $this->email;
  69.     }
  70.     public function setEmail(string $email): self
  71.     {
  72.         $this->email $email;
  73.         return $this;
  74.     }
  75.     public function getTelephone(): ?string
  76.     {
  77.         return $this->telephone;
  78.     }
  79.     public function setTelephone(string $telephone): self
  80.     {
  81.         $this->telephone $telephone;
  82.         return $this;
  83.     }
  84.     public function getObjet(): ?string
  85.     {
  86.         return $this->objet;
  87.     }
  88.     public function setObjet(string $objet): self
  89.     {
  90.         $this->objet $objet;
  91.         return $this;
  92.     }
  93.     public function getMessage(): ?string
  94.     {
  95.         return $this->message;
  96.     }
  97.     public function setMessage(string $message): self
  98.     {
  99.         $this->message $message;
  100.         return $this;
  101.     }
  102.     public function getRequete(): ?string
  103.     {
  104.         return $this->requete;
  105.     }
  106.     public function setRequete(?string $requete): self
  107.     {
  108.         $this->requete $requete;
  109.         return $this;
  110.     }
  111. }