2016-09-16 06:19:40 +02:00
|
|
|
<?php
|
2016-09-17 07:57:32 +02:00
|
|
|
/**
|
|
|
|
* ResetPasswordController.php
|
|
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
|
|
*
|
2016-10-05 06:52:15 +02:00
|
|
|
* This software may be modified and distributed under the terms of the
|
|
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
|
|
*
|
|
|
|
* See the LICENSE file for details.
|
2016-09-17 07:57:32 +02:00
|
|
|
*/
|
|
|
|
declare(strict_types = 1);
|
2016-09-16 06:19:40 +02:00
|
|
|
|
|
|
|
namespace FireflyIII\Http\Controllers\Auth;
|
|
|
|
|
|
|
|
use FireflyIII\Http\Controllers\Controller;
|
|
|
|
use Illuminate\Foundation\Auth\ResetsPasswords;
|
|
|
|
|
2016-09-17 07:57:32 +02:00
|
|
|
/**
|
|
|
|
* Class ResetPasswordController
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Http\Controllers\Auth
|
|
|
|
*/
|
2016-09-16 06:19:40 +02:00
|
|
|
class ResetPasswordController extends Controller
|
|
|
|
{
|
|
|
|
|
|
|
|
use ResetsPasswords;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new controller instance.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
2016-10-22 09:39:31 +02:00
|
|
|
parent::__construct();
|
|
|
|
|
2016-09-16 06:19:40 +02:00
|
|
|
$this->middleware('guest');
|
|
|
|
}
|
|
|
|
}
|