<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
#[ORM\MappedSuperclass()]
#[UniqueEntity('key')]
class BaseKeyValue
{
#[ORM\Column(length: 50, unique: true)]
#[Assert\NotNull()]
#[Assert\Length(max: 50)]
protected ?string $key = null;
#[ORM\Column(length: 255)]
#[Assert\NotNull()]
#[Assert\Length(max: 255)]
protected ?string $value = null;
public function __toString()
{
return $this->getKey();
}
public function getKey(): ?string
{
return $this->key;
}
public function setKey(string $key): self
{
$this->key = $key;
return $this;
}
public function getValue(): ?string
{
return $this->value;
}
public function setValue(string $value): self
{
$this->value = $value;
return $this;
}
}