src/Entity/Client.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Entity\{UserCountry};
  4. use App\Repository\ClientRepository;
  5. use Doctrine\DBAL\Types\Types;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=ClientRepository::class)
  9.  */
  10. class Client 
  11. {
  12.     /** 
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\OneToOne(targetEntity=User::class, inversedBy="client", cascade={"remove"})
  20.      * @ORM\JoinColumn(nullable=true)
  21.      */
  22.     private $user;
  23.     /**
  24.      * @ORM\OneToOne(targetEntity=Collaborateur::class, mappedBy="client")
  25.      */
  26.     private $collaborateurAccount;
  27.     /**
  28.      * @ORM\Column(type="string", length=14, nullable=true)
  29.      */
  30.     private $siret;
  31.     /**
  32.      * @ORM\Column(type="string", length=255, nullable=true)
  33.      */
  34.     private $entrepriseName;
  35.     /**
  36.      * @ORM\Column(type="text", nullable=true)
  37.      */
  38.     private $aboutMe;
  39.     /**
  40.      * @ORM\Column(type="datetime", nullable=true)
  41.      */
  42.     private $birthday;
  43.     /**
  44.      * @ORM\Column(type="string", length=255, nullable=true)
  45.      */
  46.     private $birthplace;
  47.     /**
  48.      * @ORM\Column(type="string", length=20, nullable=true)
  49.      */
  50.     private $mobilePhone;
  51.     /**
  52.      * @ORM\Column(type="string", length=20, nullable=true)
  53.      */
  54.     private $landlinePhone;
  55.     /**
  56.      * @ORM\Column(type="string", length=255, nullable=true)
  57.      */
  58.     private $address;
  59.     /**
  60.      * @ORM\Column(type="string", length=255, nullable=true)
  61.      */
  62.     private $address1;
  63.     /**
  64.      * @ORM\Column(type="string", length=255, nullable=true)
  65.      */
  66.     private $postalCode;
  67.     /**
  68.      * @ORM\Column(type="string", length=255, nullable=true)
  69.      */
  70.     private $city;
  71.     /**
  72.      * @ORM\Column(type="string", length=255, nullable=true)
  73.      */
  74.     private $longitude;
  75.     /**
  76.      * @ORM\Column(type="string", length=255, nullable=true)
  77.      */
  78.     private $latitude;
  79.     /**
  80.      * @ORM\Column(type="string", length=255, nullable=true)
  81.      */
  82.     private $facebook;
  83.     /**
  84.      * @ORM\Column(type="string", length=255, nullable=true)
  85.      */
  86.     private $twitter;
  87.     /**
  88.      * @ORM\Column(type="string", length=255, nullable=true)
  89.      */
  90.     private $instagram;
  91.     /**
  92.      * @ORM\Column(type="string", length=255, nullable=true)
  93.      */
  94.     private $linkedin;
  95.     /**
  96.      * @ORM\Column(type="boolean")
  97.      */
  98.     private $agreeTerms;
  99.     public function getId(): ?int
  100.     {
  101.         return $this->id;
  102.     }
  103.     public function getUser(): ?User
  104.     {
  105.         return $this->user;
  106.     }
  107.     public function setUser(?User $user): self
  108.     {
  109.         $this->user $user;
  110.         return $this;
  111.     }    
  112.     public function getCollaborateurAccount(): ?Collaborateur
  113.     {
  114.         return $this->collaborateurAccount;
  115.     }
  116.     public function setCollaborateurAccount(?Collaborateur $collaborateurAccount): self
  117.     {
  118.         // unset the owning side of the relation if necessary
  119.         if ($collaborateurAccount === null && $this->collaborateurAccount !== null) {
  120.             $this->collaborateurAccount->setClient(null);
  121.         }
  122.         // set the owning side of the relation if necessary
  123.         if ($collaborateurAccount !== null && $collaborateurAccount->getClient() !== $this) {
  124.             $collaborateurAccount->setClient($this);
  125.         }
  126.         $this->collaborateurAccount $collaborateurAccount;
  127.         return $this;
  128.     }
  129.     public function getSiret(): ?string
  130.     {
  131.         return $this->siret;
  132.     }
  133.     public function setSiret(?string $siret): self
  134.     {
  135.         $this->siret $siret;
  136.         return $this;
  137.     }
  138.     public function getEntrepriseName(): ?string
  139.     {
  140.         return $this->entrepriseName;
  141.     }
  142.     public function setEntrepriseName(?string $entrepriseName): self
  143.     {
  144.         $this->entrepriseName $entrepriseName;
  145.         return $this;
  146.     }
  147.     public function getAboutMe(): ?string
  148.     {
  149.         return $this->aboutMe;
  150.     }
  151.     public function setAboutMe(?string $aboutMe): self
  152.     {
  153.         $this->aboutMe $aboutMe;
  154.         return $this;
  155.     }
  156.     public function getBirthday(): ?\DateTimeInterface
  157.     {
  158.         return $this->birthday;
  159.     }
  160.     public function setBirthday(?\DateTimeInterface $birthday): self
  161.     {
  162.         $this->birthday $birthday;
  163.         return $this;
  164.     }
  165.     public function getBirthplace(): ?string
  166.     {
  167.         return $this->birthplace;
  168.     }
  169.     public function setBirthplace(?string $birthplace): self
  170.     {
  171.         $this->birthplace $birthplace;
  172.         return $this;
  173.     }
  174.     public function getMobilePhone(): ?string
  175.     {
  176.         return $this->mobilePhone;
  177.     }
  178.     public function setMobilePhone(?string $mobilePhone): self
  179.     {
  180.         $this->mobilePhone $mobilePhone;
  181.         return $this;
  182.     }
  183.     public function getLandlinePhone(): ?string
  184.     {
  185.         return $this->landlinePhone;
  186.     }
  187.     public function setLandlinePhone(?string $landlinePhone): self
  188.     {
  189.         $this->landlinePhone $landlinePhone;
  190.         return $this;
  191.     }
  192.     public function getAddress(): ?string
  193.     {
  194.         return $this->address;
  195.     }
  196.     public function setAddress(string $address): self
  197.     {
  198.         $this->address $address;
  199.         return $this;
  200.     }
  201.     public function getAddress1(): ?string
  202.     {
  203.         return $this->address1;
  204.     }
  205.     public function setAddress1(?string $address1): self
  206.     {
  207.         $this->address1 $address1;
  208.         return $this;
  209.     }
  210.     public function getPostalCode(): ?string
  211.     {
  212.         return $this->postalCode;
  213.     }
  214.     public function setPostalCode(?string $postalCode): self
  215.     {
  216.         $this->postalCode $postalCode;
  217.         return $this;
  218.     }
  219.     public function getCity(): ?string
  220.     {
  221.         return $this->city;
  222.     }
  223.     public function setCity(?string $city): self
  224.     {
  225.         $this->city $city;
  226.         return $this;
  227.     }
  228.     public function getLongitude(): ?string
  229.     {
  230.         return $this->longitude;
  231.     }
  232.     public function setLongitude(?string $longitude): self
  233.     {
  234.         $this->longitude $longitude;
  235.         return $this;
  236.     }
  237.     public function getLatitude(): ?string
  238.     {
  239.         return $this->latitude;
  240.     }
  241.     public function setLatitude(?string $latitude): self
  242.     {
  243.         $this->latitude $latitude;
  244.         return $this;
  245.     }
  246.     public function getFacebook(): ?string
  247.     {
  248.         return $this->facebook;
  249.     }
  250.     public function setFacebook(?string $facebook): self
  251.     {
  252.         $this->facebook $facebook;
  253.         return $this;
  254.     }
  255.     public function getTwitter(): ?string
  256.     {
  257.         return $this->twitter;
  258.     }
  259.     public function setTwitter(?string $twitter): self
  260.     {
  261.         $this->twitter $twitter;
  262.         return $this;
  263.     }
  264.     public function getInstagram(): ?string
  265.     {
  266.         return $this->instagram;
  267.     }
  268.     public function setInstagram(?string $instagram): self
  269.     {
  270.         $this->instagram $instagram;
  271.         return $this;
  272.     }
  273.     public function getLinkedin(): ?string
  274.     {
  275.         return $this->linkedin;
  276.     }
  277.     public function setLinkedin(?string $linkedin): self
  278.     {
  279.         $this->linkedin $linkedin;
  280.         return $this;
  281.     }
  282.     public function isAgreeTerms(): ?bool
  283.     {
  284.         return $this->agreeTerms;
  285.     }
  286.     public function setAgreeTerms(bool $agreeTerms): self
  287.     {
  288.         $this->agreeTerms $agreeTerms;
  289.         return $this;
  290.     }
  291. }