mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 23:01:29 +00:00
20 lines
383 B
PHP
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();
|
|
}
|
|
}
|