BookStack/app/Http/Controllers/Auth/ForgotPasswordController.php

33 lines
876 B
PHP
Raw Normal View History

2015-07-12 19:01:42 +00:00
<?php
namespace BookStack\Http\Controllers\Auth;
2015-07-12 19:01:42 +00:00
use BookStack\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
2015-07-12 19:01:42 +00:00
class ForgotPasswordController extends Controller
2015-07-12 19:01:42 +00:00
{
/*
|--------------------------------------------------------------------------
| Password Reset Controller
|--------------------------------------------------------------------------
|
| This controller is responsible for handling password reset emails and
| includes a trait which assists in sending these notifications from
| your application to your users. Feel free to explore this trait.
2015-07-12 19:01:42 +00:00
|
*/
use SendsPasswordResetEmails;
2015-07-12 19:01:42 +00:00
/**
* Create a new controller instance.
*
* @return void
2015-07-12 19:01:42 +00:00
*/
public function __construct()
{
$this->middleware('guest');
parent::__construct();
2015-07-12 19:01:42 +00:00
}
}