1234567891011121314151617181920212223242526272829 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author: 小夏 < 449134904@qq.com>
- // +----------------------------------------------------------------------
- namespace app\admin\validate;
- use think\Validate;
- class StorageQiniuValidate extends Validate
- {
- protected $rule = [
- 'accessKey' => 'require',
- 'secretKey' => 'require',
- 'domain' => 'require',
- ];
- protected $message = [
- 'accessKey.require' => 'AccessKey不能为空',
- 'secretKey.require' => 'secretKey不能为空',
- 'domain.require' => '空间域名不能为空',
- ];
- }
|