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

20 lines
383 B
PHP

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