src/Entity/Contact.php line 16

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ContactRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Doctrine\Common\Collections\ArrayCollection;
  6. use Doctrine\Common\Collections\Collection
  7. use Gedmo\Mapping\Annotation as Gedmo;
  8. use Symfony\Component\Validator\Constraints as Assert;
  9. /**
  10.  * @ORM\Entity(repositoryClass=ContactRepository::class)
  11.  */
  12. class Contact
  13. {
  14.     /**
  15.      * @ORM\Id
  16.      * @ORM\GeneratedValue
  17.      * @ORM\Column(type="integer")
  18.      */
  19.     private $id;
  20.     /**
  21.      * @ORM\Column(type="string", length=255)
  22.      */
  23.     private $nom;
  24.     /**
  25.      * @ORM\Column(type="string", length=255)
  26.      */
  27.     private $prenom;
  28.     /**
  29.      * @ORM\Column(type="string", length=100)
  30.      */
  31.     private $service;
  32.     /**
  33.      * @ORM\Column(type="string", length=120)
  34.      */
  35.     private $telephone;
  36.     /**
  37.      * @ORM\Column(type="string", length=120)
  38.      */
  39.     private $mailadresse;
  40.     /**
  41.      * @ORM\Column(type="text")
  42.      */
  43.     private $message;
  44.  
  45.     /**
  46.      * @Gedmo\Timestampable(on="create")
  47.      * @ORM\Column(type="datetime", nullable=true)
  48.      */
  49.     private $created_at;
  50.     /**
  51.      * @Gedmo\Timestampable(on="update")
  52.      * @ORM\Column(type="datetime", nullable=true)
  53.      */
  54.     private $updated_at;
  55.     /**
  56.      * @ORM\Column(type="boolean", nullable=true)
  57.      */
  58.     private $accept;
  59.     
  60.     public function getId(): ?int
  61.     {
  62.         return $this->id;
  63.     }
  64.     public function getNom(): ?string
  65.     {
  66.         return $this->nom;
  67.     }
  68.     public function setNom(string $nom): self
  69.     {
  70.         $this->nom $nom;
  71.         return $this;
  72.     }
  73.     public function getPrenom(): ?string
  74.     {
  75.         return $this->prenom;
  76.     }
  77.     public function setPrenom(string $prenom): self
  78.     {
  79.         $this->prenom $prenom;
  80.         return $this;
  81.     }
  82.     public function getService(): ?string
  83.     {
  84.         return $this->service;
  85.     }
  86.     public function setService(string $service): self
  87.     {
  88.         $this->service $service;
  89.         return $this;
  90.     }
  91.     public function getTelephone(): ?string
  92.     {
  93.         return $this->telephone;
  94.     }
  95.     public function setTelephone(string $telephone): self
  96.     {
  97.         $this->telephone $telephone;
  98.         return $this;
  99.     } 
  100.     public function getMailadresse(): ?string
  101.     {
  102.         return $this->mailadresse;
  103.     }
  104.     public function setMailadresse(string $mailadresse): self
  105.     {
  106.         $this->mailadresse $mailadresse;
  107.         return $this;
  108.     }
  109.     public function getCreatedAt(): ?\DateTimeInterface
  110.     {
  111.         return $this->created_at;
  112.     }
  113.     public function setCreatedAt(?\DateTimeInterface $created_at): self
  114.     {
  115.         $this->created_at $created_at;
  116.         return $this;
  117.     }
  118.     public function getUpdatedAt(): ?\DateTimeInterface
  119.     {
  120.         return $this->updated_at;
  121.     }
  122.     public function setUpdatedAt(?\DateTimeInterface $updated_at): self
  123.     {
  124.         $this->updated_at $updated_at;
  125.         return $this;
  126.     } 
  127.     public function getMessage(): ?string
  128.     {
  129.         return $this->message;
  130.     }
  131.     public function setMessage(string $message): self
  132.     {
  133.         $this->message $message;
  134.         return $this;
  135.     }
  136.     public function getAccept(): ?bool
  137.     {
  138.         return $this->accept;
  139.     }
  140.     public function setAccept(?bool $accept): self
  141.     {
  142.         $this->accept $accept;
  143.         return $this;
  144.     }
  145.  
  146. }