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

33 lines
851 B
PHP
Raw Normal View History

2015-07-12 15:01:42 -04:00
<?php
namespace BookStack\Http\Controllers\Auth;
2015-07-12 15:01:42 -04:00
use BookStack\Http\Controllers\Controller;
2015-07-12 15:01:42 -04:00
use Illuminate\Foundation\Auth\ResetsPasswords;
class ResetPasswordController extends Controller
2015-07-12 15:01:42 -04:00
{
/*
|--------------------------------------------------------------------------
| Password Reset Controller
|--------------------------------------------------------------------------
|
| This controller is responsible for handling password reset requests
| and uses a simple trait to include this behavior. You're free to
| explore this trait and override any methods you wish to tweak.
|
*/
use ResetsPasswords;
/**
* Create a new controller instance.
*
* @return void
2015-07-12 15:01:42 -04:00
*/
public function __construct()
{
$this->middleware('guest');
parent::__construct();
2015-07-12 15:01:42 -04:00
}
}