src/Entity/Informations.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\InformationsRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=InformationsRepository::class)
  7.  */
  8. class Informations
  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, nullable=true)
  18.      */
  19.     private $adress;
  20.     /**
  21.      * @ORM\Column(type="string", length=255, nullable=true)
  22.      */
  23.     private $city;
  24.     /**
  25.      * @ORM\Column(type="string", length=255, nullable=true)
  26.      */
  27.     private $zip;
  28.     /**
  29.      * @ORM\Column(type="string", length=255, nullable=true)
  30.      */
  31.     private $phone;
  32.     /**
  33.      * @ORM\Column(type="string", length=255, nullable=true)
  34.      */
  35.     private $mobile;
  36.     /**
  37.      * @ORM\Column(type="string", length=255, nullable=true)
  38.      */
  39.     private $mobileTwo;
  40.     /**
  41.      * @ORM\Column(type="string", length=255, nullable=true)
  42.      */
  43.     private $mail;
  44.     /**
  45.      * @ORM\Column(type="string", length=255, nullable=true)
  46.      */
  47.     private $logo;
  48.     /**
  49.      * @ORM\Column(type="string", length=255, nullable=true)
  50.      */
  51.     private $facebook;
  52.     /**
  53.      * @ORM\Column(type="string", length=255, nullable=true)
  54.      */
  55.     private $instagram;
  56.     /**
  57.      * @ORM\Column(type="string", length=255, nullable=true)
  58.      */
  59.     private $tiktok;
  60.     /**
  61.      * @ORM\Column(type="string", length=255, nullable=true)
  62.      */
  63.     private $linkedin;
  64.     public function getId(): ?int
  65.     {
  66.         return $this->id;
  67.     }
  68.     public function getAdress(): ?string
  69.     {
  70.         return $this->adress;
  71.     }
  72.     public function setAdress(?string $adress): self
  73.     {
  74.         $this->adress $adress;
  75.         return $this;
  76.     }
  77.     public function getCity(): ?string
  78.     {
  79.         return $this->city;
  80.     }
  81.     public function setCity(?string $city): self
  82.     {
  83.         $this->city $city;
  84.         return $this;
  85.     }
  86.     public function getZip(): ?string
  87.     {
  88.         return $this->zip;
  89.     }
  90.     public function setZip(?string $zip): self
  91.     {
  92.         $this->zip $zip;
  93.         return $this;
  94.     }
  95.     public function getPhone(): ?string
  96.     {
  97.         return $this->phone;
  98.     }
  99.     public function setPhone(?string $phone): self
  100.     {
  101.         $this->phone $phone;
  102.         return $this;
  103.     }
  104.     public function getMobile(): ?string
  105.     {
  106.         return $this->mobile;
  107.     }
  108.     public function setMobile(?string $mobile): self
  109.     {
  110.         $this->mobile $mobile;
  111.         return $this;
  112.     }
  113.     public function getMobileTwo(): ?string
  114.     {
  115.         return $this->mobileTwo;
  116.     }
  117.     public function setMobileTwo(?string $mobileTwo): self
  118.     {
  119.         $this->mobileTwo $mobileTwo;
  120.         return $this;
  121.     }
  122.     public function getMail(): ?string
  123.     {
  124.         return $this->mail;
  125.     }
  126.     public function setMail(?string $mail): self
  127.     {
  128.         $this->mail $mail;
  129.         return $this;
  130.     }
  131.     public function getLogo(): ?string
  132.     {
  133.         return $this->logo;
  134.     }
  135.     public function setLogo(?string $logo): self
  136.     {
  137.         $this->logo $logo;
  138.         return $this;
  139.     }
  140.     public function getFacebook(): ?string
  141.     {
  142.         return $this->facebook;
  143.     }
  144.     public function setFacebook(?string $facebook): self
  145.     {
  146.         $this->facebook $facebook;
  147.         return $this;
  148.     }
  149.     public function getInstagram(): ?string
  150.     {
  151.         return $this->instagram;
  152.     }
  153.     public function setInstagram(?string $instagram): self
  154.     {
  155.         $this->instagram $instagram;
  156.         return $this;
  157.     }
  158.     public function getTiktok(): ?string
  159.     {
  160.         return $this->tiktok;
  161.     }
  162.     public function setTiktok(?string $tiktok): self
  163.     {
  164.         $this->tiktok $tiktok;
  165.         return $this;
  166.     }
  167.     public function getLinkedin(): ?string
  168.     {
  169.         return $this->linkedin;
  170.     }
  171.     public function setLinkedin(?string $linkedin): self
  172.     {
  173.         $this->linkedin $linkedin;
  174.         return $this;
  175.     }
  176. }