The user roles */ #[ORM\Column(type: Types::JSON)] private array $roles = []; /** @var string The hashed password */ #[ORM\Column] private string $password; /** @var Collection */ #[ORM\ManyToMany(targetEntity: Season::class, mappedBy: 'owners')] private Collection $seasons; #[ORM\Column] private bool $isVerified = false; public function __construct() { $this->seasons = new ArrayCollection(); } public function getId(): Uuid { 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 * * @return non-empty-string */ public function getUserIdentifier(): string { /** @var non-empty-string $identifier */ $identifier = $this->email; return $identifier; } /** * @see UserInterface * * @return non-empty-array, string> */ 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 getSeasons(): Collection { return $this->seasons; } public function addSeason(Season $season): static { if (!$this->seasons->contains($season)) { $this->seasons->add($season); $season->addOwner($this); } return $this; } public function removeSeason(Season $season): static { if ($this->seasons->removeElement($season)) { $season->removeOwner($this); } return $this; } public function isVerified(): bool { return $this->isVerified; } public function setIsVerified(bool $isVerified): static { $this->isVerified = $isVerified; return $this; } public function isAdmin(): bool { return \in_array('ROLE_ADMIN', $this->getRoles(), true); } }