12345678910111213141516171819202122232425262728 |
- <?php namespace App\Facades\Servers\Tencent;
- use Illuminate\Support\Facades\Facade;
- /**
- * 对象存储
- *
- * @method array listObjectsAll($prefix='',$filter_name='',$marker='',$maxkeys=16,$delimiter='/',$result=[]) 获取指定目录下的所有对象
- * @method array|string upload($key,$body,$headers=[]) 上传对象
- * @method array|bool deleteObject($key,$versionId=null) 删除单个对象
- *
- * @see \App\Servers\Tencent\Cos
- *
- */
- class Cos extends Facade
- {
- /**
- * Get the registered name of the component.
- *
- * @return string
- */
- protected static function getFacadeAccessor()
- {
- return '\App\Servers\Tencent\Cos';
- }
- }
- ?>
|