for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Port\Controller\Auth;
use App\Port\Controller\Abstracts\PortController;
use Illuminate\Foundation\Auth\ResetsPasswords;
class ResetPasswordController extends PortController
{
/*
|--------------------------------------------------------------------------
| 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;
/**
* Where to redirect users after resetting their password.
*
* @var string
protected $redirectTo = '/home';
* Create a new controller instance.
* @return void
@return
Adding a @return annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.
Please refer to the PHP core documentation on constructors.
public function __construct()
$this->middleware('guest');
}
Adding a
@return
annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.Please refer to the PHP core documentation on constructors.