Skip to content

Commit

Permalink
make plugin function protected
Browse files Browse the repository at this point in the history
  • Loading branch information
bert-w committed Apr 8, 2024
1 parent a898955 commit ac3302a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Http/Controllers/SocialiteLoginController.php
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,8 @@ public function processCallback(string $provider): RedirectResponse
: $this->registerOauthUser($provider, $oauthUser);
}

private function plugin(): FilamentSocialitePlugin
protected function plugin(): FilamentSocialitePlugin
{
return $this->plugin ?? $this->plugin = FilamentSocialitePlugin::current();
return $this->plugin ??= FilamentSocialitePlugin::current();
}
}

0 comments on commit ac3302a

Please sign in to comment.