WorkAppConfigHandlerInterface.php 1.0 KB

123456789101112131415161718192021222324252627282930
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace crmeb\services\wechat\contract;
  12. /**
  13. * 企业微信获取应用配置
  14. * Interface WorkAppConfigHandlerInterface
  15. * @package crmeb\services\wechat\contract
  16. */
  17. interface WorkAppConfigHandlerInterface
  18. {
  19. /**
  20. * 获取应用配置
  21. * @param string $corpId
  22. * @param string $type 应用标识
  23. * @return array
  24. */
  25. public function getAppConfig(string $corpId, string $type): array;
  26. }