laravel-learn-bbs/app/Http/Requests/Api/VerificationCodeRequest.php

30 lines
540 B
PHP
Raw Permalink Normal View History

2018-06-03 08:11:51 +00:00
<?php
namespace App\Http\Requests\Api;
class VerificationCodeRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
2018-06-03 10:58:09 +00:00
'captcha_key' => 'required|string',
'captcha_code' => 'required|string',
];
}
public function attributes()
{
return [
'captcha_key' => '图片验证码 key',
'captcha_code' => '图片验证码',
2018-06-03 08:11:51 +00:00
];
}
}