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 ConfigHandlerInterface
|
|
|
|
|
* @package crmeb\services\wechat\contract
|
|
|
|
|
*/
|
|
|
|
|
interface ConfigHandlerInterface
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取全部
|
|
|
|
|
* @return array
|
|
|
|
|
*/
|
|
|
|
|
public function all(): array;
|
|
|
|
|
}
|