12345678910111213141516171819 |
- <?php
- declare (strict_types = 1);
- namespace app\middleware;
- class checkLog
- {
- /**
- * 处理请求
- *
- * @param \think\Request $request
- * @param \Closure $next
- * @return Response
- */
- public function handle($request, \Closure $next)
- {
- //
- }
- }
|