src/Entity/Contact/Contact.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Contact;
  3. use DateTimeInterface;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use App\Repository\Contact\ContactRepository;
  7. use Gedmo\Mapping\Annotation as Gedmo;
  8. #[ORM\Entity(repositoryClassContactRepository::class)]
  9. class Contact
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\Column(length255nullabletrue)]
  16.     private ?string $name null;
  17.     #[ORM\Column(length255nullabletrue)]
  18.     private ?string $email null;
  19.     #[ORM\Column(length255nullabletrue)]
  20.     private ?string $entreprise null;
  21.     #[ORM\Column(length255nullabletrue)]
  22.     private ?string $phone null;
  23.  
  24.     #[ORM\Column(length255nullabletrue)]
  25.     private ?string $emailHoneypot null;
  26.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  27.     private ?string $message null;
  28.     
  29.     #[ORM\Column]
  30.     private ?bool $isAccepted null;
  31.    /**
  32.      * @Gedmo\Timestampable(on="create")
  33.     */
  34.     #[ORM\Column(type"datetime"nullabletrue)]
  35.     private ?DateTimeInterface $createdAt null;
  36.     #[ORM\Column(length255nullabletrue)]
  37.     private ?string $origin null;
  38.     #[ORM\Column(nullabletrue)]
  39.     private ?int $originId null;
  40.     public function getId(): ?int
  41.     {
  42.         return $this->id;
  43.     }
  44.     public function getName(): ?string
  45.     {
  46.         return $this->name;
  47.     }
  48.     public function setName(?string $name): self
  49.     {
  50.         $this->name $name;
  51.         return $this;
  52.     }
  53.     public function getEmail(): ?string
  54.     {
  55.         return $this->email;
  56.     }
  57.     public function setEmail(?string $email): self
  58.     {
  59.         $this->email $email;
  60.         return $this;
  61.     }
  62.     public function getEntreprise(): ?string
  63.     {
  64.         return $this->entreprise;
  65.     }
  66.     public function setEntreprise(?string $entreprise): self
  67.     {
  68.         $this->entreprise $entreprise;
  69.         return $this;
  70.     }
  71.     public function getPhone(): ?string
  72.     {
  73.         return $this->phone;
  74.     }
  75.     public function setPhone(?string $phone): self
  76.     {
  77.         $this->phone $phone;
  78.         return $this;
  79.     }
  80.  
  81.     public function getEmailHoneypot(): ?string
  82.     {
  83.         return $this->emailHoneypot;
  84.     }
  85.     public function setEmailHoneypot(?string $emailHoneypot): self
  86.     {
  87.         $this->emailHoneypot $emailHoneypot;
  88.         return $this;
  89.     }
  90.     public function getCreatedAt(): ?\DateTimeInterface
  91.     {
  92.         return $this->createdAt;
  93.     }
  94.     public function setCreatedAt(?\DateTimeInterface $createdAt): self
  95.     {
  96.         $this->createdAt $createdAt;
  97.         return $this;
  98.     }
  99.     public function getMessage(): ?string
  100.     {
  101.         return $this->message;
  102.     }
  103.     public function setMessage(?string $message): self
  104.     {
  105.         $this->message $message;
  106.         return $this;
  107.     }
  108.     public function isisAccepted(): ?bool
  109.     {
  110.         return $this->isAccepted;
  111.     }
  112.     public function setisAccepted(bool $isAccepted): self
  113.     {
  114.         $this->isAccepted $isAccepted;
  115.         return $this;
  116.     }
  117.     public function getOrigin(): ?string
  118.     {
  119.         return $this->origin;
  120.     }
  121.     public function setOrigin(?string $origin): self
  122.     {
  123.         $this->origin $origin;
  124.         return $this;
  125.     }
  126.     public function getOriginId(): ?int
  127.     {
  128.         return $this->originId;
  129.     }
  130.     public function setOriginId(?int $originId): self
  131.     {
  132.         $this->originId $originId;
  133.         return $this;
  134.     }
  135. }