logistics_sy/app/event.php

23 lines
361 B
PHP

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