OpenApi.php 774 B

1234567891011121314151617181920212223242526272829
  1. <?php namespace App\Facades\Servers\WeiBan;
  2. use Illuminate\Support\Facades\Facade;
  3. /**
  4. * 对象存储
  5. *
  6. * @method static string getAccessToken() 获取凭证
  7. * @method static array getUserList(int $limit,int $offset,int $startTime=0,string $source='remark') 获取用户列表
  8. * @method static array getUserDetail(string $id) 获取用户详情
  9. *
  10. *
  11. * @see \App\Servers\WeiBan\OpenApi
  12. *
  13. */
  14. class OpenApi extends Facade
  15. {
  16. /**
  17. * Get the registered name of the component.
  18. *
  19. * @return string
  20. */
  21. protected static function getFacadeAccessor()
  22. {
  23. return '\App\Servers\WeiBan\OpenApi';
  24. }
  25. }
  26. ?>