123456789101112131415161718192021222324252627282930 |
- <?php
- declare(strict_types=1);
- namespace App\Request\Api\v1\User;
- use Hyperf\Validation\Request\FormRequest;
- class EditRequest 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 [
- 'nickname' => 'nullable|string',
- 'avatar' => 'nullable|string',
- 'email' => 'nullable|string'
- ];
- }
- }
|