src/Entity/Portalsettings.php line 9
<?phpnamespace App\Entity;use App\Repository\PortalsettingsRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: PortalsettingsRepository::class)]class Portalsettings{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(length: 255)]private ?string $metakey = null;#[ORM\Column(length: 1000, nullable: true)]private ?string $beschreibung = null;#[ORM\Column(length: 5000, nullable: true)]private ?string $metavalue = null;#[ORM\Column(length: 255, nullable: true)]private ?string $type = null;#[ORM\Column(length: 255, nullable: true)]private ?string $mandantenid = null;public function getId(): ?int{return $this->id;}public function getMetakey(): ?string{return $this->metakey;}public function setMetakey(string $metakey): self{$this->metakey = $metakey;return $this;}public function getBeschreibung(): ?string{return $this->beschreibung;}public function setBeschreibung(?string $beschreibung): self{$this->beschreibung = $beschreibung;return $this;}public function getMetavalue(): ?string{return $this->metavalue;}public function setMetavalue(?string $metavalue): self{$this->metavalue = $metavalue;return $this;}public function getType(): ?string{return $this->type;}public function setType(?string $type): self{$this->type = $type;return $this;}public function getMandantenid(): ?string{return $this->mandantenid;}public function setMandantenid(?string $mandantenid): self{$this->mandantenid = $mandantenid;return $this;}}