更新后端

This commit is contained in:
云泽网
2025-05-19 00:46:05 +08:00
parent 4c6f7277b0
commit 11fe0b4357
28 changed files with 4644 additions and 134 deletions
+7 -2
View File
@@ -1,8 +1,13 @@
<?php
// 中间件配置
return [
// 别名或分组
'alias' => [],
'alias' => [
'auth' => \app\middleware\Auth::class,
],
// 优先级设置,此数组中的中间件会按照数组中的顺序优先执行
'priority' => [],
// 全局中间件
'global' => [
\app\middleware\Auth::class,
],
];