provider; } public function setProvider(ConnectorProvider $provider): static { $this->provider = $provider; return $this; } public function getUser(): ?User { return $this->user; } public function setUser(?User $user): static { $this->user = $user; return $this; } public function getAuthData(): array { return $this->authData; } public function setAuthData(array $authData): static { $this->authData = $authData; return $this; } }