src/Entity/Quotation.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Symfony\Component\Validator\Constraints as Assert;
  5. /**
  6.  * @ORM\Entity(repositoryClass="App\Repository\QuotationRepository")
  7.  */
  8. class Quotation
  9. {
  10.     /**
  11.      * @ORM\Id()
  12.      * @ORM\GeneratedValue()
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255)
  18.      * @Assert\NotBlank
  19.      */
  20.     private $company;
  21.     /**
  22.      * @ORM\Column(type="string", length=255)
  23.      * @Assert\NotBlank
  24.      */
  25.     private $firstname;
  26.     /**
  27.      * @ORM\Column(type="string", length=255)
  28.      * @Assert\NotBlank
  29.      */
  30.     private $lastname;
  31.     /**
  32.      * @ORM\Column(type="string", length=20)
  33.      * @Assert\Regex("/^(?:(?:\+|00)33[\s.-]{0,3}(?:\(0\)[\s.-]{0,3})?|0)[1-9](?:(?:[\s.-]?\d{2}){4}|\d{2}(?:[\s.-]?\d{3}){2})$/")
  34.      */
  35.     private $phone;
  36.     /**
  37.      * @ORM\Column(type="string", length=255)
  38.      * @Assert\Email( message = "L'email '{{ value }}' n'est pas valide.")
  39.      */
  40.     private $email;
  41.     /**
  42.      * @ORM\Column(type="text")
  43.      *
  44.      */
  45.     private $message;
  46.     /**
  47.      * @ORM\Column(type="date")
  48.      *
  49.      */
  50.     private $requestDate;
  51.     public function getId(): ?int
  52.     {
  53.         return $this->id;
  54.     }
  55.     public function getCompany(): ?string
  56.     {
  57.         return $this->company;
  58.     }
  59.     public function setCompany(string $company): self
  60.     {
  61.         $this->company $company;
  62.         return $this;
  63.     }
  64.     public function getFirstname(): ?string
  65.     {
  66.         return $this->firstname;
  67.     }
  68.     public function setFirstname(string $firstname): self
  69.     {
  70.         $this->firstname $firstname;
  71.         return $this;
  72.     }
  73.     public function getLastname(): ?string
  74.     {
  75.         return $this->lastname;
  76.     }
  77.     public function setLastname(string $lastname): self
  78.     {
  79.         $this->lastname $lastname;
  80.         return $this;
  81.     }
  82.     public function getPhone(): ?string
  83.     {
  84.         return $this->phone;
  85.     }
  86.     public function setPhone(string $phone): self
  87.     {
  88.         $this->phone $phone;
  89.         return $this;
  90.     }
  91.     public function getEmail(): ?string
  92.     {
  93.         return $this->email;
  94.     }
  95.     public function setEmail(string $email): self
  96.     {
  97.         $this->email $email;
  98.         return $this;
  99.     }
  100.     public function getMessage(): ?string
  101.     {
  102.         return $this->message;
  103.     }
  104.     public function setMessage(string $message): self
  105.     {
  106.         $this->message $message;
  107.         return $this;
  108.     }
  109.     public function getRequestDate(): ?\DateTimeInterface
  110.     {
  111.         return $this->requestDate;
  112.     }
  113.     public function setRequestDate(\DateTimeInterface $requestDate): self
  114.     {
  115.         $this->requestDate $requestDate;
  116.         return $this;
  117.     }
  118. }