src/Entity/Texte.php line 9

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\TexteRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassTexteRepository::class)]
  6. class Texte
  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(length2000nullabletrue)]
  15.     private ?string $metavalue null;
  16.     #[ORM\Column(length255nullabletrue)]
  17.     private ?string $mandantenid null;
  18.     public function getId(): ?int
  19.     {
  20.         return $this->id;
  21.     }
  22.     public function getMetakey(): ?string
  23.     {
  24.         return $this->metakey;
  25.     }
  26.     public function setMetakey(string $metakey): self
  27.     {
  28.         $this->metakey $metakey;
  29.         return $this;
  30.     }
  31.     public function getMetavalue(): ?string
  32.     {
  33.         return $this->metavalue;
  34.     }
  35.     public function setMetavalue(?string $metavalue): self
  36.     {
  37.         $this->metavalue $metavalue;
  38.         return $this;
  39.     }
  40.     public function getMandantenid(): ?string
  41.     {
  42.         return $this->mandantenid;
  43.     }
  44.     public function setMandantenid(?string $mandantenid): self
  45.     {
  46.         $this->mandantenid $mandantenid;
  47.         return $this;
  48.     }
  49. }