Files
kulakpos_web/vendor/laravel/socialite/src/Two/ProviderInterface.php

21 lines
416 B
PHP
Raw Normal View History

2026-03-30 14:54:57 +07:00
<?php
namespace Laravel\Socialite\Two;
interface ProviderInterface
{
/**
* 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\Two\User
*/
public function user();
}