Files
huangjingfen/pro_v3.5.1/crmeb/services/wechat/contract/WorkAppConfigHandlerInterface.php

25 lines
605 B
PHP
Raw Normal View History

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
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;
}