新版文化云后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

28 lines
631 B

<?php
// 事件定义文件
return [
'bind' => [
],
'listen' => [
'AppInit' => [],
'HttpRun' => [],
'HttpEnd' => [],
'LogLevel' => [],
'LogWrite' => [],
// 定时任务:商城模块
'StoreTask' => [\app\timer\controller\Store::class],
// 定时任务:商城订单
'Order' => [\app\timer\controller\Order::class],
// 定时任务:用户优惠券
'UserCoupon' => [\app\timer\controller\UserCoupon::class],
// 定时任务:会员等级
'UserGrade' => [\app\timer\controller\UserGrade::class],
],
];