PATH:
home
/
lab2454c
/
vaultchip.com
/
vendor
/
laravel
/
socialite
/
src
/
Contracts
<?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(); }
[+]
..
[-] Provider.php
[edit]
[-] Factory.php
[edit]
[-] User.php
[edit]