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.     #[ORM\Column(length255nullabletrue)]
  30.     private ?string $fb null;
  31.     #[ORM\Column(length255nullabletrue)]
  32.     private ?string $linkedin null;
  33.     #[ORM\Column(length255nullabletrue)]
  34.     private ?string $ig null;
  35.     public function getId(): ?int
  36.     {
  37.         return $this->id;
  38.     }
  39.     
  40.     public function getConferancename(): ?string
  41.     {
  42.         return $this->conferancename;
  43.     }
  44.     public function setConferancename(?string $conferancename): static
  45.     {
  46.         $this->conferancename $conferancename;
  47.         return $this;
  48.     }
  49.     public function getConferancelocationdate(): ?string
  50.     {
  51.         return $this->conferancelocationdate;
  52.     }
  53.     public function setConferancelocationdate(?string $conferancelocationdate): static
  54.     {
  55.         $this->conferancelocationdate $conferancelocationdate;
  56.         return $this;
  57.     }
  58.     public function getConferancevenue(): ?string
  59.     {
  60.         return $this->conferancevenue;
  61.     }
  62.     public function setConferancevenue(?string $conferancevenue): static
  63.     {
  64.         $this->conferancevenue $conferancevenue;
  65.         return $this;
  66.     }
  67.     public function getBackground(): ?string
  68.     {
  69.         return $this->background;
  70.     }
  71.     public function setBackground(?string $background): static
  72.     {
  73.         $this->background $background;
  74.         return $this;
  75.     }
  76.     public function getLogo(): ?string
  77.     {
  78.         return $this->logo;
  79.     }
  80.     public function setLogo(?string $logo): static
  81.     {
  82.         $this->logo $logo;
  83.         return $this;
  84.     }
  85.     public function getAbstractsubmission(): ?string
  86.     {
  87.         return $this->abstractsubmission;
  88.     }
  89.     public function setAbstractsubmission(?string $abstractsubmission): static
  90.     {
  91.         $this->abstractsubmission $abstractsubmission;
  92.         return $this;
  93.     }
  94.     public function getPapersubmission(): ?string
  95.     {
  96.         return $this->papersubmission;
  97.     }
  98.     public function setPapersubmission(?string $papersubmission): static
  99.     {
  100.         $this->papersubmission $papersubmission;
  101.         return $this;
  102.     }
  103.     public function getAuthorsnotification(): ?string
  104.     {
  105.         return $this->authorsnotification;
  106.     }
  107.     public function setAuthorsnotification(?string $authorsnotification): static
  108.     {
  109.         $this->authorsnotification $authorsnotification;
  110.         return $this;
  111.     }
  112.     public function getFb(): ?string
  113.     {
  114.         return $this->fb;
  115.     }
  116.     public function setFb(?string $fb): static
  117.     {
  118.         $this->fb $fb;
  119.         return $this;
  120.     }
  121.     public function getLinkedin(): ?string
  122.     {
  123.         return $this->linkedin;
  124.     }
  125.     public function setLinkedin(?string $linkedin): static
  126.     {
  127.         $this->linkedin $linkedin;
  128.         return $this;
  129.     }
  130.     public function getIg(): ?string
  131.     {
  132.         return $this->ig;
  133.     }
  134.     public function setIg(?string $ig): static
  135.     {
  136.         $this->ig $ig;
  137.         return $this;
  138.     }
  139. }