<?phpnamespace App\Entity;use App\Repository\UserRepository;use Doctrine\Common\Collections\ArrayCollection;use Doctrine\Common\Collections\Collection;use Doctrine\ORM\Mapping as ORM;use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface;use Symfony\Component\Security\Core\User\UserInterface;#[ORM\Entity(repositoryClass: UserRepository::class)]class User implements UserInterface, PasswordAuthenticatedUserInterface{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\Column(length: 180, unique: true)] private ?string $email = null; #[ORM\Column] private array $roles = []; /** * @var string The hashed password */ #[ORM\Column] private ?string $password = null; #[ORM\Column(length: 255, nullable: true)] private ?string $nom = null; #[ORM\Column(length: 255, nullable: true)] private ?string $prenom = null; #[ORM\Column(nullable: true)] private ?int $telephone = null; #[ORM\Column(length: 255, nullable: true)] private ?string $fonction = null; #[ORM\OneToMany(targetEntity: Bail::class, mappedBy: 'user')] private Collection $bails; public function __construct() { $this->bails = new ArrayCollection(); } public function getId(): ?int { return $this->id; } public function getEmail(): ?string { return $this->email; } public function setEmail(string $email): static { $this->email = $email; return $this; } /** * A visual identifier that represents this user. * * @see UserInterface */ public function getUserIdentifier(): string { return (string) $this->email; } /** * @see UserInterface */ public function getRoles(): array { $roles = $this->roles; // guarantee every user at least has ROLE_USER $roles[] = 'ROLE_AGENT'; return array_unique($roles); } public function setRoles(array $roles): static { $this->roles = $roles; return $this; } /** * @see PasswordAuthenticatedUserInterface */ public function getPassword(): string { return $this->password; } public function setPassword(string $password): static { $this->password = $password; return $this; } /** * @see UserInterface */ public function eraseCredentials(): void { // If you store any temporary, sensitive data on the user, clear it here // $this->plainPassword = null; } 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 getTelephone(): ?int { return $this->telephone; } public function setTelephone(?int $telephone): static { $this->telephone = $telephone; return $this; } public function getFonction(): ?string { return $this->fonction; } public function setFonction(?string $fonction): static { $this->fonction = $fonction; return $this; } /** * @return Collection<int, Bail> */ public function getBails(): Collection { return $this->bails; } public function addBail(Bail $bail): static { if (!$this->bails->contains($bail)) { $this->bails->add($bail); $bail->setUser($this); } return $this; } public function removeBail(Bail $bail): static { if ($this->bails->removeElement($bail)) { // set the owning side to null (unless already changed) if ($bail->getUser() === $this) { $bail->setUser(null); } } return $this; }}