up infos habitants sur stats

This commit is contained in:
Tykayn 2025-06-17 16:23:29 +02:00 committed by tykayn
parent 21d4d5b850
commit 918527e15e
16 changed files with 559 additions and 240 deletions

View file

@ -100,6 +100,9 @@ class Place
#[ORM\Column(length: 255, nullable: true)]
private ?string $siret = null;
#[ORM\Column(nullable: true)]
private ?int $habitants = null;
public function getMainTag(): ?string
{
return $this->main_tag;
@ -579,4 +582,16 @@ class Place
return $this;
}
public function getHabitants(): ?int
{
return $this->habitants;
}
public function setHabitants(?int $habitants): static
{
$this->habitants = $habitants;
return $this;
}
}