<?php
namespace App\Entity;
use App\Repository\FooterRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: FooterRepository::class)]
class Footer
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private int $id;
#[ORM\Column(type: 'text', nullable: true)]
private ?string $adresse= null;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private ?string $lien_acceo= null;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private ?string $telephone= null;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private ?string $telephone_url= null;
#[ORM\Column(type: 'text', nullable: true)]
private ?string $reseaux_sociaux= null;
public function getId(): ?int
{
return $this->id;
}
public function getAdresse(): ?string
{
return $this->adresse;
}
public function setAdresse(?string $adresse): self
{
$this->adresse = $adresse;
return $this;
}
public function getLienAcceo(): ?string
{
return $this->lien_acceo;
}
public function setLienAcceo(?string $lien_acceo): self
{
$this->lien_acceo = $lien_acceo;
return $this;
}
public function getTelephone(): ?string
{
return $this->telephone;
}
public function setTelephone(?string $telephone): self
{
$this->telephone = $telephone;
return $this;
}
public function getTelephoneUrl(): ?string
{
return $this->telephone_url;
}
public function setTelephoneUrl(?string $telephone_url): self
{
$this->telephone_url = $telephone_url;
return $this;
}
public function getReseauxSociaux(): ?string
{
return $this->reseaux_sociaux;
}
public function setReseauxSociaux(?string $reseaux_sociaux): self
{
$this->reseaux_sociaux = $reseaux_sociaux;
return $this;
}
}