2016-09-15 23:19:40 -05:00
|
|
|
<?php
|
2016-09-17 00:57:32 -05:00
|
|
|
/**
|
|
|
|
* ResetPasswordController.php
|
|
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
|
|
*
|
2016-10-04 23:52:15 -05: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 00:57:32 -05:00
|
|
|
*/
|
2017-04-09 00:44:22 -05:00
|
|
|
declare(strict_types=1);
|
2016-09-15 23:19:40 -05:00
|
|
|
|
|
|
|
namespace FireflyIII\Http\Controllers\Auth;
|
|
|
|
|
|
|
|
use FireflyIII\Http\Controllers\Controller;
|
|
|
|
use Illuminate\Foundation\Auth\ResetsPasswords;
|
|
|
|
|
2016-09-17 00:57:32 -05:00
|
|
|
/**
|
2017-03-24 09:01:53 -05:00
|
|
|
* @codeCoverageIgnore
|
|
|
|
*
|
2016-09-17 00:57:32 -05:00
|
|
|
* Class ResetPasswordController
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Http\Controllers\Auth
|
|
|
|
*/
|
2016-09-15 23:19:40 -05:00
|
|
|
class ResetPasswordController extends Controller
|
|
|
|
{
|
|
|
|
|
|
|
|
use ResetsPasswords;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new controller instance.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
2016-10-22 02:39:31 -05:00
|
|
|
parent::__construct();
|
|
|
|
|
2016-09-15 23:19:40 -05:00
|
|
|
$this->middleware('guest');
|
|
|
|
}
|
|
|
|
}
|