12345678910111213141516171819202122232425262728293031 |
- <?php namespace App\Facades\Servers\WeiBan;
- use Illuminate\Support\Facades\Facade;
- /**
- * 对象存储
- *
- * @method static string getAccessToken() 获取凭证
- * @method static array getUserList(int $limit,int $offset,int $startTime=0,string $source='remark') 获取用户列表
- * @method static array getUserDetail(string $id) 获取用户详情
- * @method static array getUserListByPhone($phone) 通过手机获取用户列表
- * @method static array getTagList(int $limit=100,int $offset=0) 获取标签列表
- * @method static array markTags($extUserid,$addTags,$rmTags,$staffId) 给客户打标签
- *
- * @see \App\Servers\WeiBan\OpenApi
- *
- */
- class OpenApi extends Facade
- {
- /**
- * Get the registered name of the component.
- *
- * @return string
- */
- protected static function getFacadeAccessor()
- {
- return '\App\Servers\WeiBan\OpenApi';
- }
- }
- ?>
|