Files
huangjingfen/pro_v3.5.1/crmeb/services/wechat/contract/BaseApplicationInterface.php
panchengyong 7acbf45ff7 new files
2026-03-07 22:29:07 +08:00

42 lines
1.5 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2026 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace crmeb\services\wechat\contract;
use EasyWeChat\Pay\Contracts\Application;
use EasyWeChat\MiniApp\Contracts\Application as MiniAppApplication;
use EasyWeChat\OfficialAccount\Contracts\Application as ApplicationInterface;
use EasyWeChat\Work\Contracts\Application as WorkApplication;
/**
* Interface BaseApplicationInterface
* @package crmeb\services\wechat\contract
*/
interface BaseApplicationInterface
{
/**
* @return static
* @author 等风来
* @email 136327134@qq.com
* @date 2023/9/14
*/
public static function instance(): static;
/**
* @return ApplicationInterface|Application|MiniAppApplication|WorkApplication
* @author 等风来
* @email 136327134@qq.com
* @date 2023/9/14
*/
public function application(): ApplicationInterface|Application|MiniAppApplication|WorkApplication;
}