<?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, nullable: true)] private ?string $conferancename = null; #[ORM\Column(length: 255, nullable: true)] private ?string $conferancelocationdate = null; #[ORM\Column(length: 255, nullable: true)] private ?string $conferancevenue = null; #[ORM\Column(length: 255, nullable: true)] private ?string $background = null; #[ORM\Column(length: 255, nullable: true)] private ?string $logo = null; #[ORM\Column(length: 255, nullable: true)] private ?string $abstractsubmission = null; #[ORM\Column(length: 255, nullable: true)] private ?string $papersubmission = null; #[ORM\Column(length: 255, nullable: true)] private ?string $authorsnotification = null; public function getId(): ?int { return $this->id; } public function getConferancename(): ?string { return $this->conferancename; } public function setConferancename(?string $conferancename): static { $this->conferancename = $conferancename; return $this; } public function getConferancelocationdate(): ?string { return $this->conferancelocationdate; } public function setConferancelocationdate(?string $conferancelocationdate): static { $this->conferancelocationdate = $conferancelocationdate; return $this; } public function getConferancevenue(): ?string { return $this->conferancevenue; } public function setConferancevenue(?string $conferancevenue): static { $this->conferancevenue = $conferancevenue; return $this; } public function getBackground(): ?string { return $this->background; } public function setBackground(?string $background): static { $this->background = $background; return $this; } public function getLogo(): ?string { return $this->logo; } public function setLogo(?string $logo): static { $this->logo = $logo; return $this; } public function getAbstractsubmission(): ?string { return $this->abstractsubmission; } public function setAbstractsubmission(?string $abstractsubmission): static { $this->abstractsubmission = $abstractsubmission; return $this; } public function getPapersubmission(): ?string { return $this->papersubmission; } public function setPapersubmission(?string $papersubmission): static { $this->papersubmission = $papersubmission; return $this; } public function getAuthorsnotification(): ?string { return $this->authorsnotification; } public function setAuthorsnotification(?string $authorsnotification): static { $this->authorsnotification = $authorsnotification; return $this; }}