Entité
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user