ContactWay.php 825 B

123456789101112131415161718192021222324252627282930
  1. <?php namespace App\Facades\Servers\WechatWork;
  2. use Illuminate\Support\Facades\Facade;
  3. /**
  4. * 联系我
  5. *
  6. * @method static array getList(string $cursor,int $limit=10) 获取列表
  7. * @method static array getOne(string $configId) 获取详情
  8. * @method static array add(string $config,int $type=2,int $scene=2) 添加
  9. * @method static string edit(string $configId,array $config) 编辑
  10. * @method static string del(string $configId) 删除
  11. *
  12. * @see \App\Servers\WechatWork\ContactWay
  13. *
  14. */
  15. class ContactWay extends Facade
  16. {
  17. /**
  18. * Get the registered name of the component.
  19. *
  20. * @return string
  21. */
  22. protected static function getFacadeAccessor()
  23. {
  24. return '\App\Servers\WechatWork\ContactWay';
  25. }
  26. }
  27. ?>