firefly-iii/app/Http/Controllers/Auth/ResetPasswordController.php

41 lines
817 B
PHP
Raw Normal View History

2016-09-15 23:19:40 -05:00
<?php
/**
* ResetPasswordController.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* 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.
*/
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;
/**
2017-03-24 09:01:53 -05:00
* @codeCoverageIgnore
*
* 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');
}
}