12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace App\Http\Requests\Client\Wechat;
- use Illuminate\Foundation\Http\FormRequest;
- class HandleCallbackRequest extends FormRequest
- {
-
- public function authorize(): bool
- {
- return true;
- }
-
- public function rules(): array
- {
- return [
- 'code' => ['required', 'string'],
- 'state' => ['required', 'string', 'size:32'],
- 'invite_code' => ['nullable', 'string'],
- ];
- }
-
- public function attributes(): array
- {
- return [
- 'code' => '授权码',
- 'state' => '状态码',
- ];
- }
- }
|