event.php 329 B

12345678910111213141516
  1. <?php
  2. // 事件定义文件
  3. return [
  4. 'bind' => [
  5. ],
  6. 'listen' => [
  7. 'AppInit' => [],
  8. 'HttpRun' => [],
  9. 'HttpEnd' => [],
  10. 'LogLevel' => [],
  11. 'LogWrite' => [],
  12. 'backendInit' => [app\common\event\Security::class],
  13. ],
  14. 'subscribe' => [
  15. ],
  16. ];