src/Entity/LandingContact.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\LandingContactRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Symfony\Component\Validator\Constraints as Assert;
  6. /**
  7.  * @ORM\Entity(repositoryClass=LandingContactRepository::class)
  8.  */
  9. class LandingContact
  10. {
  11.     public function __construct()
  12.     {
  13.         $this->date = new \DateTime();
  14.     }
  15.     /**
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue
  18.      * @ORM\Column(type="integer")
  19.      */
  20.     private $id;
  21.     /**
  22.      * @Assert\NotBlank()
  23.      * @ORM\Column(type="string", length=255, nullable=true)
  24.      */
  25.     private $name;
  26.     /**
  27.      * @Assert\NotBlank()
  28.      * @ORM\Column(type="string", length=255, nullable=true)
  29.      */
  30.     private $society;
  31.     /**
  32.      * @Assert\NotBlank()
  33.      * @Assert\Email()
  34.      * @ORM\Column(type="string", length=255, nullable=true)
  35.      */
  36.     private $email;
  37.     /**
  38.      * @Assert\NotBlank()
  39.      * @ORM\Column(type="string", length=255, nullable=true)
  40.      */
  41.     private $country;
  42.     /**
  43.      * @ORM\Column(type="datetime", nullable=true)
  44.      */
  45.     private $date;
  46.     /**
  47.      * @ORM\ManyToOne(targetEntity=Catalog::class, inversedBy="landingContacts")
  48.      */
  49.     private $catalog;
  50.     public function getId(): ?int
  51.     {
  52.         return $this->id;
  53.     }
  54.     public function getName(): ?string
  55.     {
  56.         return $this->name;
  57.     }
  58.     public function setName(?string $name): self
  59.     {
  60.         $this->name $name;
  61.         return $this;
  62.     }
  63.     public function getSociety(): ?string
  64.     {
  65.         return $this->society;
  66.     }
  67.     public function setSociety(?string $society): self
  68.     {
  69.         $this->society $society;
  70.         return $this;
  71.     }
  72.     public function getEmail(): ?string
  73.     {
  74.         return $this->email;
  75.     }
  76.     public function setEmail(?string $email): self
  77.     {
  78.         $this->email $email;
  79.         return $this;
  80.     }
  81.     public function getCountry(): ?string
  82.     {
  83.         return $this->country;
  84.     }
  85.     public function setCountry(?string $country): self
  86.     {
  87.         $this->country $country;
  88.         return $this;
  89.     }
  90.     public function getDate(): ?\DateTimeInterface
  91.     {
  92.         return $this->date;
  93.     }
  94.     public function setDate(?\DateTimeInterface $date): self
  95.     {
  96.         $this->date $date;
  97.         return $this;
  98.     }
  99.     public function getCatalog(): ?Catalog
  100.     {
  101.         return $this->catalog;
  102.     }
  103.     public function setCatalog(?Catalog $catalog): self
  104.     {
  105.         $this->catalog $catalog;
  106.         return $this;
  107.     }
  108. }