1 | <?php |
||
12 | class AuthController extends Controller |
||
13 | { |
||
14 | /** |
||
15 | * Redirect the user to the GitHub authentication page. |
||
16 | * |
||
17 | * @return \Symfony\Component\HttpFoundation\RedirectResponse |
||
18 | */ |
||
19 | public function redirectToProvider() |
||
23 | |||
24 | /** |
||
25 | * Obtain the user information from Facebook. |
||
26 | * |
||
27 | * @return \Illuminate\Http\RedirectResponse |
||
28 | */ |
||
29 | public function handleProviderCallback() |
||
47 | } |
||
48 |