src/Entity/Setting.php line 9

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\SettingRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassSettingRepository::class)]
  6. class Setting
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length255)]
  13.     private ?string $appName null;
  14.     #[ORM\Column(length255nullabletrue)]
  15.     private ?string $adresse null;
  16.     #[ORM\Column(length255nullabletrue)]
  17.     private ?string $city null;
  18.     #[ORM\Column(length255nullabletrue)]
  19.     private ?string $state null;
  20.     #[ORM\Column(length50nullabletrue)]
  21.     private ?string $phone null;
  22.     #[ORM\Column(length50nullabletrue)]
  23.     private ?string $mobile null;
  24.     public function getId(): ?int
  25.     {
  26.         return $this->id;
  27.     }
  28.     public function getAppName(): ?string
  29.     {
  30.         return $this->appName;
  31.     }
  32.     public function setAppName(string $appName): self
  33.     {
  34.         $this->appName $appName;
  35.         return $this;
  36.     }
  37.     public function getAdresse(): ?string
  38.     {
  39.         return $this->adresse;
  40.     }
  41.     public function setAdresse(?string $adresse): self
  42.     {
  43.         $this->adresse $adresse;
  44.         return $this;
  45.     }
  46.     public function getCity(): ?string
  47.     {
  48.         return $this->city;
  49.     }
  50.     public function setCity(?string $city): self
  51.     {
  52.         $this->city $city;
  53.         return $this;
  54.     }
  55.     public function getState(): ?string
  56.     {
  57.         return $this->state;
  58.     }
  59.     public function setState(?string $state): self
  60.     {
  61.         $this->state $state;
  62.         return $this;
  63.     }
  64.     public function getPhone(): ?string
  65.     {
  66.         return $this->phone;
  67.     }
  68.     public function setPhone(?string $phone): self
  69.     {
  70.         $this->phone $phone;
  71.         return $this;
  72.     }
  73.     public function getMobile(): ?string
  74.     {
  75.         return $this->mobile;
  76.     }
  77.     public function setMobile(?string $mobile): self
  78.     {
  79.         $this->mobile $mobile;
  80.         return $this;
  81.     }
  82. }