src/Entity/Paramettre.php line 9
<?phpnamespace App\Entity;use App\Repository\ParamettreRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: ParamettreRepository::class)]class Paramettre{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(length: 255, nullable: true)]private ?string $libelle = null;#[ORM\Column(length: 255, nullable: true)]private ?string $type = null;public function getId(): ?int{return $this->id;}public function getLibelle(): ?string{return $this->libelle;}public function setLibelle(?string $libelle): static{$this->libelle = $libelle;return $this;}public function getType(): ?string{return $this->type;}public function setType(?string $type): static{$this->type = $type;return $this;}}