catchAdmin/app/event.php

21 lines
345 B
PHP
Raw Normal View History

2019-12-02 23:04:43 +08:00
<?php
// 事件定义文件
return [
'bind' => [
],
'listen' => [
'AppInit' => [],
'HttpRun' => [],
'HttpEnd' => [],
'LogLevel' => [],
'LogWrite' => [],
'RouteLoaded' => [
2019-12-06 08:24:07 +08:00
catcher\event\LoadModuleRoutes::class,
2019-12-02 23:04:43 +08:00
],
],
'subscribe' => [
],
];