The user roles */ #[ORM\Column] private array $roles = []; /** * @var string The hashed password */ #[ORM\Column] private ?string $password = null; /** * @var Collection */ #[ORM\OneToMany(targetEntity: CommonList::class, mappedBy: 'addedBy')] private Collection $commonLists; /** * @var Collection */ #[ORM\OneToMany(targetEntity: UserList::class, mappedBy: 'viewer', orphanRemoval: true)] private Collection $userLists; #[ORM\Column(length: 255, nullable: true)] private ?string $name = null; public function __construct() { $this->commonLists = new ArrayCollection(); $this->userLists = 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 * * @return list */ public function getRoles(): array { $roles = $this->roles; // guarantee every user at least has ROLE_USER $roles[] = 'ROLE_USER'; return array_unique($roles); } /** * @param list $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; } /** * @return Collection */ public function getCommonLists(): Collection { return $this->commonLists; } public function addCommonList(CommonList $commonList): static { if (!$this->commonLists->contains($commonList)) { $this->commonLists->add($commonList); $commonList->setAddedBy($this); } return $this; } public function removeCommonList(CommonList $commonList): static { if ($this->commonLists->removeElement($commonList)) { // set the owning side to null (unless already changed) if ($commonList->getAddedBy() === $this) { $commonList->setAddedBy(null); } } return $this; } /** * @return Collection */ public function getUserLists(): Collection { return $this->userLists; } public function addUserList(UserList $userList): static { if (!$this->userLists->contains($userList)) { $this->userLists->add($userList); $userList->setViewer($this); } return $this; } public function removeUserList(UserList $userList): static { if ($this->userLists->removeElement($userList)) { // set the owning side to null (unless already changed) if ($userList->getViewer() === $this) { $userList->setViewer(null); } } return $this; } public function getName(): ?string { return $this->name; } public function setName(?string $name): static { $this->name = $name; return $this; } public function getPseudo(): string { return $this->getName() ?? $this->getEmail(); } }