Files
newznab-tmux/app/Http/Requests/Auth/ShowLinkRequestFormForgotPasswordRequest.php
T
2026-02-26 14:26:07 +01:00

22 lines
425 B
PHP

<?php
declare(strict_types=1);
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<string, mixed>
*/
public function rules()
{
return CaptchaHelper::getValidationRules();
}
}