其余文件
This commit is contained in:
13
app/api/validate/WechatMobileValidate.php
Normal file
13
app/api/validate/WechatMobileValidate.php
Normal file
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
namespace app\api\validate;
|
||||
|
||||
use think\Validate;
|
||||
|
||||
class WechatMobileValidate extends Validate
|
||||
{
|
||||
protected $rule = [
|
||||
'code' => 'require',
|
||||
'encrypted_data' => 'require',
|
||||
'iv' => 'require',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user