houde_web_api/app/event.php
2023-04-16 23:05:17 +08:00

21 lines
323 B
PHP

<?php
// 事件定义文件
use app\common\listener\DelayToken;
return [
'bind' => [],
'listen' => [
'AppInit' => [],
'HttpRun' => [],
'HttpEnd' => [
DelayToken::class
],
'LogLevel' => [],
'LogWrite' => [],
],
'subscribe' => [],
];