mirror of
https://gitee.com/technical-laohu/mpay.git
synced 2026-05-06 16:50:23 +08:00
9 lines
231 B
PHP
9 lines
231 B
PHP
<?php
|
|
// 中间件配置
|
|
return [
|
|
// 别名或分组
|
|
'alias' => ['Auth' => \app\middleware\Auth::class,],
|
|
// 优先级设置,此数组中的中间件会按照数组中的顺序优先执行
|
|
'priority' => [],
|
|
];
|