event.php 506 B

12345678910111213141516171819202122232425
  1. <?php
  2. // 事件定义文件
  3. use app\common\listener\NoticeListener;
  4. use app\common\listener\PropertyCommissionListener;
  5. return [
  6. 'bind' => [
  7. ],
  8. 'listen' => [
  9. 'AppInit' => [],
  10. 'HttpRun' => [],
  11. 'HttpEnd' => [],
  12. 'LogLevel' => [],
  13. 'LogWrite' => [],
  14. // 通知
  15. 'Notice' => [NoticeListener::class],
  16. // 物业分成
  17. 'PropertyCommission' => [PropertyCommissionListener::class],
  18. ],
  19. 'subscribe' => [
  20. ],
  21. ];