Cos.php 687 B

12345678910111213141516171819202122232425262728
  1. <?php namespace App\Facades\Servers\Tencent;
  2. use Illuminate\Support\Facades\Facade;
  3. /**
  4. * 对象存储
  5. *
  6. * @method array listObjectsAll($prefix='',$filter_name='',$marker='',$maxkeys=16,$delimiter='/',$result=[]) 获取指定目录下的所有对象
  7. * @method array|string upload($key,$body,$headers=[]) 上传对象
  8. * @method array|bool deleteObject($key,$versionId=null) 删除单个对象
  9. *
  10. * @see \App\Servers\Tencent\Cos
  11. *
  12. */
  13. class Cos extends Facade
  14. {
  15. /**
  16. * Get the registered name of the component.
  17. *
  18. * @return string
  19. */
  20. protected static function getFacadeAccessor()
  21. {
  22. return '\App\Servers\Tencent\Cos';
  23. }
  24. }
  25. ?>