This commit is contained in:
marvin
2024-11-19 10:16:50 +01:00
parent 9719ea9d1e
commit 3abf0ff6c1
3 changed files with 12 additions and 12 deletions

View File

@@ -21,7 +21,7 @@ class Participant
private ?string $nom = null;
#[ORM\Column(length: 255)]
private ?string $prénom = null;
private ?string $prenom = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $telephone = null;
@@ -74,14 +74,14 @@ class Participant
return $this;
}
public function getPrénom(): ?string
public function getPrenom(): ?string
{
return $this->prénom;
return $this->prenom;
}
public function setPrénom(string $prénom): self
public function setPrenom(string $prenom): self
{
$this->prénom = $prénom;
$this->prenom = $prenom;
return $this;
}