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