for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mascame\Artificer\Http\Controllers\Auth;
use Illuminate\Foundation\Auth\ResetsPasswords;
use Mascame\Artificer\Http\Controllers\BaseController;
class PasswordController extends BaseController
{
/*
|--------------------------------------------------------------------------
| 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;
/**
* Create a new password 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($this->guestMiddleware());
parent::__construct();
}
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.