2026-03-21 02:55:24 +08:00
|
|
|
<?php
|
|
|
|
|
// +----------------------------------------------------------------------
|
2026-03-29 11:22:52 +08:00
|
|
|
// | Author: ScottPan Team
|
2026-03-21 02:55:24 +08:00
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
namespace crmeb\services\wechat\contract;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 企业微信获取应用配置
|
|
|
|
|
* Interface WorkAppConfigHandlerInterface
|
|
|
|
|
* @package crmeb\services\wechat\contract
|
|
|
|
|
*/
|
|
|
|
|
interface WorkAppConfigHandlerInterface
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取应用配置
|
|
|
|
|
* @param string $corpId
|
|
|
|
|
* @param string $type 应用标识
|
|
|
|
|
* @return array
|
|
|
|
|
*/
|
|
|
|
|
public function getAppConfig(string $corpId, string $type): array;
|
|
|
|
|
|
|
|
|
|
}
|