event.php 618 B

1234567891011121314151617181920212223
  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. ],
  19. 'subscribe' => [
  20. ],
  21. ];