src/Entity/Clients.php line 9
<?phpnamespace App\Entity;use App\Repository\ClientsRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: ClientsRepository::class)]class Clients{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(nullable: true)]private ?int $code_regroupement = null;#[ORM\Column(length: 100, nullable: true)]private ?string $nom = null;public function getId(): ?int{return $this->id;}public function getCodeRegroupement(): ?int{return $this->code_regroupement;}public function setCodeRegroupement(?int $code_regroupement): self{$this->code_regroupement = $code_regroupement;return $this;}public function getNom(): ?string{return $this->nom;}public function setNom(?string $nom): self{$this->nom = $nom;return $this;}}