src/Entity/ServiceKey.php line 9
<?phpnamespace App\Entity;use App\Repository\ServiceKeyRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: ServiceKeyRepository::class)]class ServiceKey{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(length: 255)]private ?string $value = null;public function getId(): ?int{return $this->id;}public function getValue(): ?string{return $this->value;}public function setValue(string $value): static{$this->value = $value;return $this;}}