<?php
namespace App\Entity;
use App\Repository\ParameterRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: ParameterRepository::class)]
class Parameter
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255)]
private ?string $cle = null;
#[ORM\Column(length: 255)]
private ?string $value = null;
public function getId(): ?int
{
return $this->id;
}
public function getCle(): ?string
{
return $this->cle;
}
public function setCle(string $cle): static
{
$this->cle = $cle;
return $this;
}
public function getValue(): ?string
{
return $this->value;
}
public function setValue(string $value): static
{
$this->value = $value;
return $this;
}
}