src/Entity/BaseKeyValue.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Symfony\Component\Validator\Constraints as Assert;
  5. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  6. #[ORM\MappedSuperclass()]
  7. #[UniqueEntity('key')]
  8. class BaseKeyValue
  9. {
  10.     #[ORM\Column(length50uniquetrue)]
  11.     #[Assert\NotNull()]
  12.     #[Assert\Length(max50)]
  13.     protected ?string $key null;
  14.     #[ORM\Column(length255)]
  15.     #[Assert\NotNull()]
  16.     #[Assert\Length(max255)]
  17.     protected ?string $value null;
  18.     public function __toString()
  19.     {
  20.         return $this->getKey();
  21.     }
  22.     public function getKey(): ?string
  23.     {
  24.         return $this->key;
  25.     }
  26.     public function setKey(string $key): self
  27.     {
  28.         $this->key $key;
  29.         return $this;
  30.     }
  31.     public function getValue(): ?string
  32.     {
  33.         return $this->value;
  34.     }
  35.     public function setValue(string $value): self
  36.     {
  37.         $this->value $value;
  38.         return $this;
  39.     }
  40. }