20 lines
542 B
PHP
Executable File
20 lines
542 B
PHP
Executable File
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 宏驰云科技开发团队 版权所有 拥有最终解释权
|
|
// +----------------------------------------------------------------------
|
|
|
|
// | Author: HcyShop-kiki
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\api\validate;
|
|
|
|
use think\Validate;
|
|
|
|
class WechatMobile extends Validate
|
|
{
|
|
protected $rule = [
|
|
'code' => 'require',
|
|
'encrypted_data' => 'require',
|
|
'iv' => 'require',
|
|
];
|
|
} |