You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
680 B
38 lines
680 B
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Request\v3;
|
|
|
|
use App\Request\BaseFormRequest;
|
|
|
|
class UserUpdateRequest extends BaseFormRequest
|
|
{
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'userId' => 'required|nonempty',
|
|
'iv' => 'required|nonempty',
|
|
'encryptedData' => 'required|nonempty'
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function messages(): array
|
|
{
|
|
return [
|
|
'*.*' => ':attribute无效',
|
|
];
|
|
}
|
|
|
|
public function attributes(): array
|
|
{
|
|
return parent::attributes();
|
|
}
|
|
}
|