<?phpnamespace App\Entity;use App\Repository\ContactRepository;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Entity(repositoryClass=ContactRepository::class) */class Contact{ /** * @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=50) */ private $telephone; /** * @ORM\Column(type="string", length=255) */ private $objet; /** * @ORM\Column(type="text") */ private $message; /** * @ORM\Column(type="string", length=255, nullable=true) */ private $requete; 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 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 getRequete(): ?string { return $this->requete; } public function setRequete(?string $requete): self { $this->requete = $requete; return $this; }}