StorageQiniuValidate.php 1.0 KB

1234567891011121314151617181920212223242526272829
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: 小夏 < 449134904@qq.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\admin\validate;
  12. use think\Validate;
  13. class StorageQiniuValidate extends Validate
  14. {
  15. protected $rule = [
  16. 'accessKey' => 'require',
  17. 'secretKey' => 'require',
  18. 'domain' => 'require',
  19. ];
  20. protected $message = [
  21. 'accessKey.require' => 'AccessKey不能为空',
  22. 'secretKey.require' => 'secretKey不能为空',
  23. 'domain.require' => '空间域名不能为空',
  24. ];
  25. }