src/Entity/Footer.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FooterRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassFooterRepository::class)]
  6. class Footer
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column(type'integer')]
  11.     private int $id;
  12.     #[ORM\Column(type'text'nullabletrue)]
  13.     private ?string $adressenull;
  14.     #[ORM\Column(type'string'length255nullabletrue)]
  15.     private ?string $lien_acceonull;
  16.     #[ORM\Column(type'string'length255nullabletrue)]
  17.     private ?string $telephonenull;
  18.     #[ORM\Column(type'string'length255nullabletrue)]
  19.     private ?string $telephone_urlnull;
  20.     #[ORM\Column(type'text'nullabletrue)]
  21.     private ?string $reseaux_sociauxnull;
  22.     public function getId(): ?int
  23.     {
  24.         return $this->id;
  25.     }
  26.     public function getAdresse(): ?string
  27.     {
  28.         return $this->adresse;
  29.     }
  30.     public function setAdresse(?string $adresse): self
  31.     {
  32.         $this->adresse $adresse;
  33.         return $this;
  34.     }
  35.     public function getLienAcceo(): ?string
  36.     {
  37.         return $this->lien_acceo;
  38.     }
  39.     public function setLienAcceo(?string $lien_acceo): self
  40.     {
  41.         $this->lien_acceo $lien_acceo;
  42.         return $this;
  43.     }
  44.     public function getTelephone(): ?string
  45.     {
  46.         return $this->telephone;
  47.     }
  48.     public function setTelephone(?string $telephone): self
  49.     {
  50.         $this->telephone $telephone;
  51.         return $this;
  52.     }
  53.     public function getTelephoneUrl(): ?string
  54.     {
  55.         return $this->telephone_url;
  56.     }
  57.     public function setTelephoneUrl(?string $telephone_url): self
  58.     {
  59.         $this->telephone_url $telephone_url;
  60.         return $this;
  61.     }
  62.     public function getReseauxSociaux(): ?string
  63.     {
  64.         return $this->reseaux_sociaux;
  65.     }
  66.     public function setReseauxSociaux(?string $reseaux_sociaux): self
  67.     {
  68.         $this->reseaux_sociaux $reseaux_sociaux;
  69.         return $this;
  70.     }
  71. }