ltiProvider = $ltiProvider; $this->roles = $roles; $this->claims = $claims; $this->resourceIdentifier = $resourceIdentifier; $this->user = $user; $this->openIdLoginHint = $openIdLoginHint; $this->launchUrl = $launchUrl; } public function getLtiProvider(): LtiProvider { return $this->ltiProvider; } public function getRoles(): array { return $this->roles; } public function getClaims(): array { return $this->claims; } public function getResourceIdentifier(): string { return $this->resourceIdentifier; } public function getUser(): User { return $this->user; } public function getOpenIdLoginHint(): string { return $this->openIdLoginHint; } public function getLaunchUrl(): ?string { return $this->launchUrl; } }