Files
newznab-tmux/app/Http/Requests/Auth/ShowLinkRequestFormForgotPasswordRequest.php
T
2025-10-26 22:12:10 +01:00

20 lines
384 B
PHP

<?php
namespace App\Http\Requests\Auth;
use App\Support\CaptchaHelper;
use Illuminate\Foundation\Http\FormRequest;
class ShowLinkRequestFormForgotPasswordRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return CaptchaHelper::getValidationRules();
}
}