authName = $authName; $this->properties = []; } public function getProperties(): array { return $this->properties; } public function setProperties(array $properties): static { $this->properties = $properties; return $this; } public function getDojo(): ?Dojo { return $this->dojo; } public function setDojo(?Dojo $dojo): static { $this->dojo = $dojo; return $this; } public function getUserIdentifier(): string { return $this->id; } public function eraseCredentials(): void { return; } public function getRoles(): array { return [ "ROLE_USER" ]; } public function getAuthName(): ?string { return $this->authName; } public function setAuthName(string $authName): static { $this->authName = $authName; return $this; } }