src/Entity/Coordonnee.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CoordonneeRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassCoordonneeRepository::class)]
  6. class Coordonnee
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length255)]
  13.     private ?string $nomEntreprise null;
  14.     #[ORM\Column(length255nullabletrue)]
  15.     private ?string $adresse null;
  16.     #[ORM\Column(length255nullabletrue)]
  17.     private ?string $mail null;
  18.     #[ORM\Column(length255nullabletrue)]
  19.     private ?string $mail2 null;
  20.     #[ORM\Column(length255nullabletrue)]
  21.     private ?string $telephone null;
  22.     #[ORM\Column(length255nullabletrue)]
  23.     private ?string $telephone2 null;
  24.     #[ORM\Column(length255nullabletrue)]
  25.     private ?string $logo null;
  26.     #[ORM\Column(length255nullabletrue)]
  27.     private ?string $urlFacebook null;
  28.     #[ORM\Column(length255nullabletrue)]
  29.     private ?string $urlTwitter null;
  30.     #[ORM\Column(length255nullabletrue)]
  31.     private ?string $urlInstagram null;
  32.     #[ORM\Column(length255nullabletrue)]
  33.     private ?string $urlLinked null;
  34.     public function getId(): ?int
  35.     {
  36.         return $this->id;
  37.     }
  38.     public function getNomEntreprise(): ?string
  39.     {
  40.         return $this->nomEntreprise;
  41.     }
  42.     public function setNomEntreprise(string $nomEntreprise): static
  43.     {
  44.         $this->nomEntreprise $nomEntreprise;
  45.         return $this;
  46.     }
  47.     public function getAdresse(): ?string
  48.     {
  49.         return $this->adresse;
  50.     }
  51.     public function setAdresse(?string $adresse): static
  52.     {
  53.         $this->adresse $adresse;
  54.         return $this;
  55.     }
  56.     public function getMail(): ?string
  57.     {
  58.         return $this->mail;
  59.     }
  60.     public function setMail(?string $mail): static
  61.     {
  62.         $this->mail $mail;
  63.         return $this;
  64.     }
  65.     public function getMail2(): ?string
  66.     {
  67.         return $this->mail2;
  68.     }
  69.     public function setMail2(?string $mail2): static
  70.     {
  71.         $this->mail2 $mail2;
  72.         return $this;
  73.     }
  74.     public function getTelephone(): ?string
  75.     {
  76.         return $this->telephone;
  77.     }
  78.     public function setTelephone(?string $telephone): static
  79.     {
  80.         $this->telephone $telephone;
  81.         return $this;
  82.     }
  83.     public function getTelephone2(): ?string
  84.     {
  85.         return $this->telephone2;
  86.     }
  87.     public function setTelephone2(?string $telephone2): static
  88.     {
  89.         $this->telephone2 $telephone2;
  90.         return $this;
  91.     }
  92.     public function getLogo(): ?string
  93.     {
  94.         return $this->logo;
  95.     }
  96.     public function setLogo(?string $logo): static
  97.     {
  98.         $this->logo $logo;
  99.         return $this;
  100.     }
  101.     public function getUrlFacebook(): ?string
  102.     {
  103.         return $this->urlFacebook;
  104.     }
  105.     public function setUrlFacebook(?string $urlFacebook): static
  106.     {
  107.         $this->urlFacebook $urlFacebook;
  108.         return $this;
  109.     }
  110.     public function getUrlTwitter(): ?string
  111.     {
  112.         return $this->urlTwitter;
  113.     }
  114.     public function setUrlTwitter(?string $urlTwitter): static
  115.     {
  116.         $this->urlTwitter $urlTwitter;
  117.         return $this;
  118.     }
  119.     public function getUrlInstagram(): ?string
  120.     {
  121.         return $this->urlInstagram;
  122.     }
  123.     public function setUrlInstagram(?string $urlInstagram): static
  124.     {
  125.         $this->urlInstagram $urlInstagram;
  126.         return $this;
  127.     }
  128.     public function getUrlLinked(): ?string
  129.     {
  130.         return $this->urlLinked;
  131.     }
  132.     public function setUrlLinked(?string $urlLinked): static
  133.     {
  134.         $this->urlLinked $urlLinked;
  135.         return $this;
  136.     }
  137.     
  138. }