BookStack\Services\SocialAuthService::startLogIn PHP Method

startLogIn() public method

Start the social login path.
public startLogIn ( string $socialDriver ) : RedirectResponse
$socialDriver string
return Symfony\Component\HttpFoundation\RedirectResponse
    public function startLogIn($socialDriver)
    {
        $driver = $this->validateDriver($socialDriver);
        return $this->socialite->driver($driver)->redirect();
    }