mirror of
https://gitee.com/wonderful-code/buildadmin
synced 2024-11-22 15:24:09 +00:00
16 lines
329 B
PHP
16 lines
329 B
PHP
|
<?php
|
||
|
// 事件定义文件
|
||
|
return [
|
||
|
'bind' => [
|
||
|
],
|
||
|
'listen' => [
|
||
|
'AppInit' => [],
|
||
|
'HttpRun' => [],
|
||
|
'HttpEnd' => [],
|
||
|
'LogLevel' => [],
|
||
|
'LogWrite' => [],
|
||
|
'backendInit' => [app\common\event\Security::class],
|
||
|
],
|
||
|
'subscribe' => [
|
||
|
],
|
||
|
];
|