Files
huangjingfen/pro_v3.5.1/app/AppService.php
panchengyong 7acbf45ff7 new files
2026-03-07 22:29:07 +08:00

72 lines
2.3 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 app;
use app\listener\wechat\OffcialAccountListener;
use app\listener\wechat\RoutineListener;
use app\listener\wechat\WorkListener;
use crmeb\services\SystemConfigService;
use app\services\work\WorkConfigServices;
use crmeb\services\GroupDataService;
use crmeb\services\wechat\config\HttpCommonConfig;
use crmeb\services\wechat\MiniProgram;
use crmeb\services\wechat\OfficialAccount;
use crmeb\services\wechat\Work;
use crmeb\utils\Json;
use think\Service;
use app\services\system\config\SystemConfigServices;
/**
* Class AppService
* @package app
*/
class AppService extends Service
{
public $bind = [
'json' => Json::class,
'sysConfig' => SystemConfigService::class,
'sysGroupData' => GroupDataService::class
];
public function boot()
{
defined('DS') || define('DS', DIRECTORY_SEPARATOR);
}
/**
* 注册
*/
public function register()
{
//http配置服务
$this->app->bind(HttpCommonConfig::class, function () {
return (new HttpCommonConfig())->setServe(SystemConfigServices::class);
});
//公众号
$this->app->bind(OfficialAccount::class, function () {
return (new OfficialAccount)->setPushMessageHandler(OffcialAccountListener::class);
});
//小程序
$this->app->bind(MiniProgram::class, function () {
return (new MiniProgram)->setPushMessageHandler(RoutineListener::class);
});
//企业微信
$this->app->bind(Work::class, function () {
return (new Work)->setPushMessageHandler(WorkListener::class)
->setConfigHandler(WorkConfigServices::class);
});
}
}