labourage avec davantage d'objets

This commit is contained in:
Tykayn 2025-06-03 11:37:27 +02:00 committed by tykayn
parent 2965841e81
commit a412cb977a
11 changed files with 197 additions and 81 deletions

View file

@ -82,6 +82,9 @@ class Place
#[ORM\Column(length: 255, nullable: true)]
private ?string $note_content = null;
#[ORM\Column(nullable: true)]
private ?\DateTime $displayed_date = null;
public function getMainTag(): ?string
{
return $this->main_tag;
@ -431,4 +434,16 @@ class Place
return $this;
}
public function getDisplayedDate(): ?\DateTime
{
return $this->displayed_date;
}
public function setDisplayedDate(?\DateTime $displayed_date): static
{
$this->displayed_date = $displayed_date;
return $this;
}
}