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

33 lines
832 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;
2015-07-12 19:01:42 +00:00
use Illuminate\Foundation\Auth\ResetsPasswords;
class PasswordController extends Controller
{
/*
|--------------------------------------------------------------------------
| 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;
protected $redirectTo = '/';
2015-07-12 19:01:42 +00:00
/**
* Create a new password controller instance.
*/
public function __construct()
{
$this->middleware('guest');
}
}