checkLog.php 297 B

12345678910111213141516171819
  1. <?php
  2. declare (strict_types = 1);
  3. namespace app\middleware;
  4. class checkLog
  5. {
  6. /**
  7. * 处理请求
  8. *
  9. * @param \think\Request $request
  10. * @param \Closure $next
  11. * @return Response
  12. */
  13. public function handle($request, \Closure $next)
  14. {
  15. //
  16. }
  17. }