| Current Path : /home/copmadinaarea/drive.copmadinaarea.org/vendor/laravel/socialite/src/Contracts/ |
| Current File : /home/copmadinaarea/drive.copmadinaarea.org/vendor/laravel/socialite/src/Contracts/Provider.php |
<?php
namespace Laravel\Socialite\Contracts;
interface Provider
{
/**
* Redirect the user to the authentication page for the provider.
*
* @return \Symfony\Component\HttpFoundation\RedirectResponse
*/
public function redirect();
/**
* Get the User instance for the authenticated user.
*
* @return \Laravel\Socialite\Contracts\User
*/
public function user();
}