src/Entity/Rejoindre.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\RejoindreRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=RejoindreRepository::class)
  7.  */
  8. class Rejoindre
  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=20)
  30.      */
  31.     private $telephone;
  32.     /**
  33.      * @ORM\Column(type="string", length=30)
  34.      */
  35.     private $apropos;
  36.     /**
  37.      * @ORM\Column(type="string", length=50)
  38.      */
  39.     private $poste;
  40.     /**
  41.      * @ORM\Column(type="string", length=255, nullable=true)
  42.      */
  43.     private $objet;
  44.     /**
  45.      * @ORM\Column(type="text")
  46.      */
  47.     private $message;
  48.     /**
  49.      * @ORM\Column(type="string", length=255, nullable=true)
  50.      */
  51.     private $fichier;
  52.     public function getId(): ?int
  53.     {
  54.         return $this->id;
  55.     }
  56.     public function getCivilite(): ?string
  57.     {
  58.         return $this->civilite;
  59.     }
  60.     public function setCivilite(string $civilite): self
  61.     {
  62.         $this->civilite $civilite;
  63.         return $this;
  64.     }
  65.     public function getNom(): ?string
  66.     {
  67.         return $this->nom;
  68.     }
  69.     public function setNom(string $nom): self
  70.     {
  71.         $this->nom $nom;
  72.         return $this;
  73.     }
  74.     public function getEmail(): ?string
  75.     {
  76.         return $this->email;
  77.     }
  78.     public function setEmail(string $email): self
  79.     {
  80.         $this->email $email;
  81.         return $this;
  82.     }
  83.     public function getTelephone(): ?string
  84.     {
  85.         return $this->telephone;
  86.     }
  87.     public function setTelephone(string $telephone): self
  88.     {
  89.         $this->telephone $telephone;
  90.         return $this;
  91.     }
  92.     public function getApropos(): ?string
  93.     {
  94.         return $this->apropos;
  95.     }
  96.     public function setApropos(string $apropos): self
  97.     {
  98.         $this->apropos $apropos;
  99.         return $this;
  100.     }
  101.     public function getPoste(): ?string
  102.     {
  103.         return $this->poste;
  104.     }
  105.     public function setPoste(string $poste): self
  106.     {
  107.         $this->poste $poste;
  108.         return $this;
  109.     }
  110.     public function getObjet(): ?string
  111.     {
  112.         return $this->objet;
  113.     }
  114.     public function setObjet(?string $objet): self
  115.     {
  116.         $this->objet $objet;
  117.         return $this;
  118.     }
  119.     public function getMessage(): ?string
  120.     {
  121.         return $this->message;
  122.     }
  123.     public function setMessage(string $message): self
  124.     {
  125.         $this->message $message;
  126.         return $this;
  127.     }
  128.     public function getFichier()
  129.     {
  130.         return $this->fichier;
  131.     }
  132.     public function setFichier($fichier): self
  133.     {
  134.         $this->fichier $fichier;
  135.         return $this;
  136.     }
  137. }