12345678910111213141516171819202122232425262728 |
- <?php
- declare(strict_types=1);
- namespace App\Request\Api\v1\Common;
- use Hyperf\Validation\Request\FormRequest;
- class AgreementRequest extends FormRequest
- {
- /**
- * Determine if the user is authorized to make this request.
- */
- public function authorize(): bool
- {
- return true;
- }
- /**
- * Get the validation rules that apply to the request.
- */
- public function rules(): array
- {
- return [
- 'key' => 'required|string'
- ];
- }
- }
|