event.php 361 B

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