BookStack\Http\Controllers\Auth\RegisterController::socialRegister PHP Метод

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

Redirect to the social site for authentication intended to register.
public socialRegister ( $socialDriver ) : mixed
$socialDriver
Результат mixed
    public function socialRegister($socialDriver)
    {
        $this->checkRegistrationAllowed();
        session()->put('social-callback', 'register');
        return $this->socialAuthService->startRegister($socialDriver);
    }