event.php 681 B

123456789101112131415161718192021222324
  1. <?php
  2. // 事件定义文件
  3. return [
  4. 'bind' => [
  5. ],
  6. 'listen' => [
  7. 'AppInit' => [],
  8. 'HttpRun' => [],
  9. 'HttpEnd' => [],
  10. 'LogLevel' => [],
  11. 'LogWrite' => [],
  12. "role_sync"=>[app\bug\listener\RoleEvent::class],
  13. "user_sync"=>[app\bug\listener\UserEvent::class],
  14. "wx_push"=>[app\bug\listener\WxPush::class],
  15. "PlatCat"=>[app\admin\listener\PlatCat::class],
  16. "copyCompany"=>[\app\listener\CopyCompany::class],
  17. "updateSupplierGood"=>[app\admin\listener\updateSupplierGood::class],
  18. "report_code"=>[app\cxinv\listener\ReportCode::class],
  19. ],
  20. 'subscribe' => [
  21. ],
  22. ];