<?php
namespace App\Entity;
use App\Repository\SettingsRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: SettingsRepository::class)]
class Settings
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $titre = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $logo = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $adresse = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $telephone = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $favicon = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $email = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $lienfb = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $lieninsta = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $nbjours = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $setting = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $mf = null;
public function getId(): ?int
{
return $this->id;
}
public function getTitre(): ?string
{
return $this->titre;
}
public function setTitre(?string $titre): static
{
$this->titre = $titre;
return $this;
}
public function getLogo(): ?string
{
return $this->logo;
}
public function setLogo(?string $logo): static
{
$this->logo = $logo;
return $this;
}
public function getAdresse(): ?string
{
return $this->adresse;
}
public function setAdresse(?string $adresse): static
{
$this->adresse = $adresse;
return $this;
}
public function getTelephone(): ?string
{
return $this->telephone;
}
public function setTelephone(?string $telephone): static
{
$this->telephone = $telephone;
return $this;
}
public function getFavicon(): ?string
{
return $this->favicon;
}
public function setFavicon(?string $favicon): static
{
$this->favicon = $favicon;
return $this;
}
public function getEmail(): ?string
{
return $this->email;
}
public function setEmail(?string $email): static
{
$this->email = $email;
return $this;
}
public function getLienfb(): ?string
{
return $this->lienfb;
}
public function setLienfb(?string $lienfb): static
{
$this->lienfb = $lienfb;
return $this;
}
public function getLieninsta(): ?string
{
return $this->lieninsta;
}
public function setLieninsta(?string $lieninsta): static
{
$this->lieninsta = $lieninsta;
return $this;
}
public function getNbjours(): ?string
{
return $this->nbjours;
}
public function setNbjours(?string $nbjours): static
{
$this->nbjours = $nbjours;
return $this;
}
public function getSetting(): ?string
{
return $this->setting;
}
public function setSetting(?string $setting): static
{
$this->setting = $setting;
return $this;
}
public function getMf(): ?string
{
return $this->mf;
}
public function setMf(?string $mf): static
{
$this->mf = $mf;
return $this;
}
}