src/Entity/Portalsettings.php line 9

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PortalsettingsRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassPortalsettingsRepository::class)]
  6. class Portalsettings
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length255)]
  13.     private ?string $metakey null;
  14.     #[ORM\Column(length1000nullabletrue)]
  15.     private ?string $beschreibung null;
  16.     #[ORM\Column(length5000nullabletrue)]
  17.     private ?string $metavalue null;
  18.     #[ORM\Column(length255nullabletrue)]
  19.     private ?string $type null;
  20.     public function getId(): ?int
  21.     {
  22.         return $this->id;
  23.     }
  24.     public function getMetakey(): ?string
  25.     {
  26.         return $this->metakey;
  27.     }
  28.     public function setMetakey(string $metakey): self
  29.     {
  30.         $this->metakey $metakey;
  31.         return $this;
  32.     }
  33.     public function getBeschreibung(): ?string
  34.     {
  35.         return $this->beschreibung;
  36.     }
  37.     public function setBeschreibung(?string $beschreibung): self
  38.     {
  39.         $this->beschreibung $beschreibung;
  40.         return $this;
  41.     }
  42.     public function getMetavalue(): ?string
  43.     {
  44.         return $this->metavalue;
  45.     }
  46.     public function setMetavalue(?string $metavalue): self
  47.     {
  48.         $this->metavalue $metavalue;
  49.         return $this;
  50.     }
  51.     public function getType(): ?string
  52.     {
  53.         return $this->type;
  54.     }
  55.     public function setType(?string $type): self
  56.     {
  57.         $this->type $type;
  58.         return $this;
  59.     }
  60. }