<?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>// +----------------------------------------------------------------------namespaceapp\admin\validate;usethink\Validate;classStorageQiniuValidateextendsValidate{protected$rule=['accessKey'=>'require','secretKey'=>'require','domain'=>'require',];protected$message=['accessKey.require'=>'AccessKey不能为空','secretKey.require'=>'secretKey不能为空','domain.require'=>'空间域名不能为空',];}