src/Entity/Setting.php line 9
<?phpnamespace App\Entity;use App\Repository\SettingRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: SettingRepository::class)]class Setting{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(length: 255)]private ?string $appName = null;#[ORM\Column(length: 255, nullable: true)]private ?string $adresse = null;#[ORM\Column(length: 255, nullable: true)]private ?string $city = null;#[ORM\Column(length: 255, nullable: true)]private ?string $state = null;#[ORM\Column(length: 50, nullable: true)]private ?string $phone = null;#[ORM\Column(length: 50, nullable: true)]private ?string $mobile = null;public function getId(): ?int{return $this->id;}public function getAppName(): ?string{return $this->appName;}public function setAppName(string $appName): self{$this->appName = $appName;return $this;}public function getAdresse(): ?string{return $this->adresse;}public function setAdresse(?string $adresse): self{$this->adresse = $adresse;return $this;}public function getCity(): ?string{return $this->city;}public function setCity(?string $city): self{$this->city = $city;return $this;}public function getState(): ?string{return $this->state;}public function setState(?string $state): self{$this->state = $state;return $this;}public function getPhone(): ?string{return $this->phone;}public function setPhone(?string $phone): self{$this->phone = $phone;return $this;}public function getMobile(): ?string{return $this->mobile;}public function setMobile(?string $mobile): self{$this->mobile = $mobile;return $this;}}