File "Provider.php"

Full Path: /var/www/drive/laravel/socialite/src/Contracts/Provider.php
File size: 453 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Laravel\Socialite\Contracts;

interface Provider
{
    /**
     * Redirect the user to the authentication page for the provider.
     *
     * @return \Symfony\Component\HttpFoundation\RedirectResponse|\Illuminate\Http\RedirectResponse
     */
    public function redirect();

    /**
     * Get the User instance for the authenticated user.
     *
     * @return \Laravel\Socialite\Contracts\User
     */
    public function user();
}