123456789101112131415161718192021222324 |
- <?php
- // 事件定义文件
- return [
- 'bind' => [
- ],
- 'listen' => [
- 'AppInit' => [],
- 'HttpRun' => [],
- 'HttpEnd' => [],
- 'LogLevel' => [],
- 'LogWrite' => [],
- "role_sync"=>[app\bug\listener\RoleEvent::class],
- "user_sync"=>[app\bug\listener\UserEvent::class],
- "wx_push"=>[app\bug\listener\WxPush::class],
- "PlatCat"=>[app\admin\listener\PlatCat::class],
- "copyCompany"=>[\app\listener\CopyCompany::class],
- "updateSupplierGood"=>[app\admin\listener\updateSupplierGood::class],
- "report_code"=>[app\cxinv\listener\ReportCode::class],
- ],
- 'subscribe' => [
- ],
- ];
|