mirror of
https://gitee.com/ulthon/ulthon_information.git
synced 2026-03-03 16:24:28 +08:00
16 lines
206 B
PHP
16 lines
206 B
PHP
<?php
|
|
|
|
namespace app\middleware;
|
|
|
|
use app\model\AdminPermission;
|
|
use app\Request;
|
|
|
|
class PermissionRecord
|
|
{
|
|
public function handle(Request $request, \Closure $next)
|
|
{
|
|
|
|
return $next($request);
|
|
}
|
|
}
|