Reorganize files to prepare API versioning

This commit is contained in:
Bubka
2021-11-04 20:10:41 +01:00
parent affd4bdf8d
commit 9ca9fcc9ef
29 changed files with 1 additions and 1 deletions

View File

@ -0,0 +1,24 @@
<?php
namespace App\Http\Controllers\Auth;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\ResetsPasswords;
class ResetPasswordController 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;
}