BookStack\Services\SocialAuthService::startRegister PHP Méthode

startRegister() public méthode

Start the social registration process
public startRegister ( string $socialDriver ) : RedirectResponse
$socialDriver string
Résultat Symfony\Component\HttpFoundation\RedirectResponse
    public function startRegister($socialDriver)
    {
        $driver = $this->validateDriver($socialDriver);
        return $this->socialite->driver($driver)->redirect();
    }