mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
18 lines
340 B
PHP
18 lines
340 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use App\Support\CaptchaHelper;
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class ContactContactURequest extends FormRequest
|
|
{
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return CaptchaHelper::getValidationRules();
|
|
}
|
|
}
|