<?php
namespace App\Entity;
use App\Repository\RejoindreRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=RejoindreRepository::class)
*/
class Rejoindre
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=12)
*/
private $civilite;
/**
* @ORM\Column(type="string", length=80)
*/
private $nom;
/**
* @ORM\Column(type="string", length=50)
*/
private $email;
/**
* @ORM\Column(type="string", length=20)
*/
private $telephone;
/**
* @ORM\Column(type="string", length=30)
*/
private $apropos;
/**
* @ORM\Column(type="string", length=50)
*/
private $poste;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $objet;
/**
* @ORM\Column(type="text")
*/
private $message;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $fichier;
public function getId(): ?int
{
return $this->id;
}
public function getCivilite(): ?string
{
return $this->civilite;
}
public function setCivilite(string $civilite): self
{
$this->civilite = $civilite;
return $this;
}
public function getNom(): ?string
{
return $this->nom;
}
public function setNom(string $nom): self
{
$this->nom = $nom;
return $this;
}
public function getEmail(): ?string
{
return $this->email;
}
public function setEmail(string $email): self
{
$this->email = $email;
return $this;
}
public function getTelephone(): ?string
{
return $this->telephone;
}
public function setTelephone(string $telephone): self
{
$this->telephone = $telephone;
return $this;
}
public function getApropos(): ?string
{
return $this->apropos;
}
public function setApropos(string $apropos): self
{
$this->apropos = $apropos;
return $this;
}
public function getPoste(): ?string
{
return $this->poste;
}
public function setPoste(string $poste): self
{
$this->poste = $poste;
return $this;
}
public function getObjet(): ?string
{
return $this->objet;
}
public function setObjet(?string $objet): self
{
$this->objet = $objet;
return $this;
}
public function getMessage(): ?string
{
return $this->message;
}
public function setMessage(string $message): self
{
$this->message = $message;
return $this;
}
public function getFichier()
{
return $this->fichier;
}
public function setFichier($fichier): self
{
$this->fichier = $fichier;
return $this;
}
}