20 lines
333 B
PHP
Executable File
20 lines
333 B
PHP
Executable File
<?php
|
|
// 事件定义文件
|
|
return [
|
|
'bind' => [
|
|
],
|
|
|
|
'listen' => [
|
|
'AppInit' => [],
|
|
'HttpRun' => [],
|
|
'HttpEnd' => [],
|
|
'LogLevel' => [],
|
|
'LogWrite' => [],
|
|
// 通知
|
|
'Notice' => ['app\common\listener\NoticeListener']
|
|
],
|
|
|
|
'subscribe' => [
|
|
],
|
|
];
|