*/ #[ORM\ManyToMany(targetEntity: Reservations::class, inversedBy: 'utilisateurs')] private Collection $Reservation; /** * @var Collection */ #[ORM\ManyToMany(targetEntity: Tables::class, inversedBy: 'utilisateurs')] private Collection $table; public function __construct() { $this->Reservation = new ArrayCollection(); $this->table = new ArrayCollection(); } public function getId(): ?int { return $this->id; } public function getNom(): ?string { return $this->Nom; } public function setNom(string $Nom): static { $this->Nom = $Nom; return $this; } public function getPrenom(): ?string { return $this->Prenom; } public function setPrenom(string $Prenom): static { $this->Prenom = $Prenom; return $this; } public function getUserIdentifier(): string { return $this->Mail; } public function setUserIdentifier(string $userIdentifier): self { $this->Mail = $userIdentifier; return $this; } public function getPassword(): ?string { return $this->MotDePasse; } public function setPassword(string $MotDePasse): static { $this->MotDePasse = $MotDePasse; return $this; } public function getRoles(): array { return $this->Role; } public function setRoles(array $Role): self { $this->Role = $Role; return $this; } public function eraseCredentials(): void { // Méthode pour effacer les données sensibles (ex : plaintext password) } /** * @return Collection */ public function getReservation(): Collection { return $this->Reservation; } public function addReservation(Reservations $reservation): static { if (!$this->Reservation->contains($reservation)) { $this->Reservation->add($reservation); } return $this; } public function removeReservation(Reservations $reservation): static { $this->Reservation->removeElement($reservation); return $this; } /** * @return Collection */ public function getTable(): Collection { return $this->table; } public function addTable(Tables $table): static { if (!$this->table->contains($table)) { $this->table->add($table); } return $this; } public function removeTable(Tables $table): static { $this->table->removeElement($table); return $this; } }