BookStack\Services\SocialAuthService::startLogIn PHP Метод

startLogIn() публичный Метод

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