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

18 lines
340 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.
*/
public function rules(): array
{
return CaptchaHelper::getValidationRules();
}
}