src/Entity/Setting.php line 9

Open in your IDE?
  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.     
  13.     #[ORM\Column(length255nullabletrue)]
  14.     private ?string $conferancename null;
  15.     #[ORM\Column(length255nullabletrue)]
  16.     private ?string $conferancelocationdate null;
  17.     #[ORM\Column(length255nullabletrue)]
  18.     private ?string $conferancevenue null;
  19.     #[ORM\Column(length255nullabletrue)]
  20.     private ?string $background null;
  21.     #[ORM\Column(length255nullabletrue)]
  22.     private ?string $logo null;
  23.     #[ORM\Column(length255nullabletrue)]
  24.     private ?string $abstractsubmission null;
  25.     #[ORM\Column(length255nullabletrue)]
  26.     private ?string $papersubmission null;
  27.     #[ORM\Column(length255nullabletrue)]
  28.     private ?string $authorsnotification null;
  29.     public function getId(): ?int
  30.     {
  31.         return $this->id;
  32.     }
  33.     
  34.     public function getConferancename(): ?string
  35.     {
  36.         return $this->conferancename;
  37.     }
  38.     public function setConferancename(?string $conferancename): static
  39.     {
  40.         $this->conferancename $conferancename;
  41.         return $this;
  42.     }
  43.     public function getConferancelocationdate(): ?string
  44.     {
  45.         return $this->conferancelocationdate;
  46.     }
  47.     public function setConferancelocationdate(?string $conferancelocationdate): static
  48.     {
  49.         $this->conferancelocationdate $conferancelocationdate;
  50.         return $this;
  51.     }
  52.     public function getConferancevenue(): ?string
  53.     {
  54.         return $this->conferancevenue;
  55.     }
  56.     public function setConferancevenue(?string $conferancevenue): static
  57.     {
  58.         $this->conferancevenue $conferancevenue;
  59.         return $this;
  60.     }
  61.     public function getBackground(): ?string
  62.     {
  63.         return $this->background;
  64.     }
  65.     public function setBackground(?string $background): static
  66.     {
  67.         $this->background $background;
  68.         return $this;
  69.     }
  70.     public function getLogo(): ?string
  71.     {
  72.         return $this->logo;
  73.     }
  74.     public function setLogo(?string $logo): static
  75.     {
  76.         $this->logo $logo;
  77.         return $this;
  78.     }
  79.     public function getAbstractsubmission(): ?string
  80.     {
  81.         return $this->abstractsubmission;
  82.     }
  83.     public function setAbstractsubmission(?string $abstractsubmission): static
  84.     {
  85.         $this->abstractsubmission $abstractsubmission;
  86.         return $this;
  87.     }
  88.     public function getPapersubmission(): ?string
  89.     {
  90.         return $this->papersubmission;
  91.     }
  92.     public function setPapersubmission(?string $papersubmission): static
  93.     {
  94.         $this->papersubmission $papersubmission;
  95.         return $this;
  96.     }
  97.     public function getAuthorsnotification(): ?string
  98.     {
  99.         return $this->authorsnotification;
  100.     }
  101.     public function setAuthorsnotification(?string $authorsnotification): static
  102.     {
  103.         $this->authorsnotification $authorsnotification;
  104.         return $this;
  105.     }
  106. }