mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 15:32:48 +08:00
21 lines
359 B
PHP
21 lines
359 B
PHP
<?php
|
||
|
||
// !当前文件的内容应当与 /extend/base/admin/event.php的内容一致,然后根据实际情况设置
|
||
|
||
// 事件定义文件
|
||
return [
|
||
'bind' => [
|
||
],
|
||
|
||
'listen' => [
|
||
'AppInit' => [],
|
||
'HttpRun' => [],
|
||
'HttpEnd' => [],
|
||
'LogLevel' => [],
|
||
'LogWrite' => [],
|
||
],
|
||
|
||
'subscribe' => [
|
||
],
|
||
];
|