Browse Source

dev分支忽略文件

the_bug 5 months ago
parent
commit
ee192a8159

+ 0 - 17
.env

@@ -1,17 +0,0 @@
-APP_NAME=user_producer
-APP_ENV=dev
-
-DB_DRIVER=mysql
-DB_HOST=192.168.1.201
-DB_PORT=3307
-DB_DATABASE=hyperf
-DB_USERNAME=root
-DB_PASSWORD=123456
-DB_CHARSET=utf8mb4
-DB_COLLATION=utf8mb4_unicode_ci
-DB_PREFIX=
-
-REDIS_HOST=localhost
-REDIS_AUTH=(null)
-REDIS_PORT=6379
-REDIS_DB=0

+ 2 - 0
.gitignore

@@ -19,3 +19,5 @@ runtime/logs/hyperf.log
 # Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties`
 # should NOT be excluded as they contain compiler settings and other important
 # information for Eclipse / Flash Builder.
+runtime
+/.env

+ 0 - 1
runtime/container/aspects.cache

@@ -1 +0,0 @@
-a:8:{i:0;s:35:"Hyperf\Cache\Aspect\CacheableAspect";i:1;s:36:"Hyperf\Cache\Aspect\CacheAheadAspect";i:2;s:36:"Hyperf\Cache\Aspect\CacheEvictAspect";i:3;s:34:"Hyperf\Cache\Aspect\CachePutAspect";i:4;s:35:"Hyperf\Cache\Aspect\FailCacheAspect";i:5;s:36:"Hyperf\Config\Annotation\ValueAspect";i:6;s:44:"Hyperf\DbConnection\Aspect\TransactionAspect";i:7;s:33:"Hyperf\Di\Annotation\InjectAspect";}

File diff suppressed because it is too large
+ 0 - 0
runtime/container/classes.cache


+ 0 - 32
runtime/container/proxy/App_Controller_AbstractController.proxy.php

@@ -1,32 +0,0 @@
-<?php
-
-declare (strict_types=1);
-/**
- * This file is part of Hyperf.
- *
- * @link     https://www.hyperf.io
- * @document https://hyperf.wiki
- * @contact  group@hyperf.io
- * @license  https://github.com/hyperf/hyperf/blob/master/LICENSE
- */
-namespace App\Controller;
-
-use Hyperf\Di\Annotation\Inject;
-use Hyperf\HttpServer\Contract\RequestInterface;
-use Hyperf\HttpServer\Contract\ResponseInterface;
-use Psr\Container\ContainerInterface;
-abstract class AbstractController
-{
-    use \Hyperf\Di\Aop\ProxyTrait;
-    use \Hyperf\Di\Aop\PropertyHandlerTrait;
-    function __construct()
-    {
-        $this->__handlePropertyHandler(__CLASS__);
-    }
-    #[Inject]
-    protected ContainerInterface $container;
-    #[Inject]
-    protected RequestInterface $request;
-    #[Inject]
-    protected ResponseInterface $response;
-}

+ 0 - 31
runtime/container/proxy/App_Controller_IndexController.proxy.php

@@ -1,31 +0,0 @@
-<?php
-
-declare (strict_types=1);
-/**
- * This file is part of Hyperf.
- *
- * @link     https://www.hyperf.io
- * @document https://hyperf.wiki
- * @contact  group@hyperf.io
- * @license  https://github.com/hyperf/hyperf/blob/master/LICENSE
- */
-namespace App\Controller;
-
-class IndexController extends AbstractController
-{
-    use \Hyperf\Di\Aop\ProxyTrait;
-    use \Hyperf\Di\Aop\PropertyHandlerTrait;
-    function __construct()
-    {
-        if (method_exists(parent::class, '__construct')) {
-            parent::__construct(...func_get_args());
-        }
-        $this->__handlePropertyHandler(__CLASS__);
-    }
-    public function index()
-    {
-        $user = $this->request->input('user', 'Hyperf');
-        $method = $this->request->getMethod();
-        return ['method' => $method, 'message' => "Hello {$user}."];
-    }
-}

File diff suppressed because it is too large
+ 0 - 0
runtime/container/scan.cache


+ 0 - 1
runtime/hyperf.pid

@@ -1 +0,0 @@
-99590

+ 0 - 100
runtime/logs/hyperf.log

@@ -1,100 +0,0 @@
-[2024-10-29 05:36:02] sql.INFO: [3.76] select * from `menu` [] []
-[2024-10-29 05:36:02] sql.INFO: [1.76] select * from `menu` [] []
-[2024-10-29 05:36:23] sql.INFO: [2.74] select * from `menu` [] []
-[2024-10-29 05:36:23] sql.INFO: [1.89] select * from `menu` [] []
-[2024-10-29 05:42:33] sql.INFO: [5.81] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
-[2024-10-29 05:42:33] sql.INFO: [12.36] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
-[2024-10-29 05:42:33] sql.INFO: [2.02] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74', '75', '76', '77', '78', '79', '80', '83', '84') [] []
-[2024-10-29 05:42:47] sql.INFO: [1.56] select * from `user` where (`user_name` = '1') limit 1 [] []
-[2024-10-29 05:42:47] sql.INFO: [1.72] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
-[2024-10-29 05:42:47] sql.INFO: [1.74] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74', '75', '76', '77', '78', '79', '80', '83', '84') [] []
-[2024-10-29 05:42:47] sql.INFO: [1.48] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
-[2024-10-29 05:43:04] sql.INFO: [2.73] select * from `menu` where (`pid` = '1') [] []
-[2024-10-29 05:43:06] sql.INFO: [2.23] select * from `menu` where (`pid` = '1') [] []
-[2024-10-29 05:43:19] sql.INFO: [1.49] select * from `menu` where (`pid` = '1') [] []
-[2024-10-29 05:44:23] sql.INFO: [4.03] select * from `menu` where (`pid` = '91') [] []
-[2024-10-29 05:44:23] sql.INFO: [17.05] delete from `menu` where (`id` = '91') [] []
-[2024-10-29 05:51:29] sql.INFO: [4.68] select * from `user` where (`user_name` = '15210211200') limit 1 [] []
-[2024-10-29 05:51:29] sql.INFO: [2] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '73' limit 1 [] []
-[2024-10-29 05:51:29] sql.INFO: [1.3] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
-[2024-10-29 05:51:29] sql.INFO: [1.68] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
-[2024-10-29 05:51:34] sql.INFO: [2.28] select * from `menu` [] []
-[2024-10-29 05:51:37] sql.INFO: [6.39] select * from `menu` where (`pid` = '90') [] []
-[2024-10-29 05:51:37] sql.INFO: [23.79] delete from `menu` where (`id` = '90') [] []
-[2024-10-29 05:51:37] sql.INFO: [3.43] select * from `menu` [] []
-[2024-10-29 06:00:47] sql.INFO: [17.12] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '73' limit 1 [] []
-[2024-10-29 06:00:47] sql.INFO: [4.55] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
-[2024-10-29 06:00:47] sql.INFO: [3.31] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
-[2024-10-29 06:00:56] sql.INFO: [3] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '73' limit 1 [] []
-[2024-10-29 06:00:56] sql.INFO: [3.41] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
-[2024-10-29 06:00:56] sql.INFO: [2.08] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
-[2024-10-29 06:02:18] sql.INFO: [6.34] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '73' limit 1 [] []
-[2024-10-29 06:02:18] sql.INFO: [3.83] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
-[2024-10-29 06:02:18] sql.INFO: [3.09] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
-[2024-10-29 06:02:33] sql.INFO: [4.67] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '73' limit 1 [] []
-[2024-10-29 06:02:33] sql.INFO: [1.72] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
-[2024-10-29 06:02:33] sql.INFO: [1.71] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
-[2024-10-29 06:02:59] sql.INFO: [6.02] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '73' limit 1 [] []
-[2024-10-29 06:02:59] sql.INFO: [1.58] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
-[2024-10-29 06:02:59] sql.INFO: [1.75] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
-[2024-10-29 06:14:49] sql.INFO: [5.57] select * from `menu` [] []
-[2024-10-29 06:18:49] sql.INFO: [16.71] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '73' limit 1 [] []
-[2024-10-29 06:18:49] sql.INFO: [3.43] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
-[2024-10-29 06:18:49] sql.INFO: [1.94] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
-[2024-10-29 06:18:49] sql.INFO: [1.87] select * from `menu` [] []
-[2024-10-29 06:21:33] sql.INFO: [13.5] select * from `menu` [] []
-[2024-10-29 06:24:53] sql.INFO: [9.58] select * from `menu` [] []
-[2024-10-29 06:26:22] sql.INFO: [12.07] select * from `menu` [] []
-[2024-10-29 06:27:24] sql.INFO: [5.22] select * from `menu` [] []
-[2024-10-29 06:27:48] sql.INFO: [2.16] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '73' limit 1 [] []
-[2024-10-29 06:27:48] sql.INFO: [6.63] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
-[2024-10-29 06:27:48] sql.INFO: [3.08] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
-[2024-10-29 06:27:49] sql.INFO: [4.34] select * from `menu` [] []
-[2024-10-29 06:29:04] sql.INFO: [18.58] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '73' limit 1 [] []
-[2024-10-29 06:29:04] sql.INFO: [6.09] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
-[2024-10-29 06:29:04] sql.INFO: [3.75] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
-[2024-10-29 06:29:04] sql.INFO: [4.86] select * from `menu` [] []
-[2024-10-29 06:31:32] sql.INFO: [7.99] select * from `menu` [] []
-[2024-10-29 06:32:10] sql.INFO: [2.17] select * from `menu` [] []
-[2024-10-29 06:32:18] sql.INFO: [2.71] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '73' limit 1 [] []
-[2024-10-29 06:32:18] sql.INFO: [5.01] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
-[2024-10-29 06:32:18] sql.INFO: [4.02] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
-[2024-10-29 06:32:19] sql.INFO: [4.47] select * from `menu` [] []
-[2024-10-29 06:33:08] sql.INFO: [3.46] select * from `menu` [] []
-[2024-10-29 06:36:03] sql.INFO: [10.93] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '73' limit 1 [] []
-[2024-10-29 06:36:03] sql.INFO: [1.84] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
-[2024-10-29 06:36:03] sql.INFO: [1.61] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
-[2024-10-29 06:36:03] sql.INFO: [1.81] select * from `menu` [] []
-[2024-10-29 06:39:09] sql.INFO: [8.88] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '73' limit 1 [] []
-[2024-10-29 06:39:09] sql.INFO: [1.99] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
-[2024-10-29 06:39:09] sql.INFO: [1.82] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
-[2024-10-29 06:39:10] sql.INFO: [5.6] select * from `menu` [] []
-[2024-10-29 06:41:46] sql.INFO: [14.26] select * from `menu` [] []
-[2024-10-29 06:41:57] sql.INFO: [2.35] select * from `menu` [] []
-[2024-10-29 06:42:05] sql.INFO: [3.07] select * from `menu` [] []
-[2024-10-29 06:42:44] sql.INFO: [1.85] select * from `menu` [] []
-[2024-10-29 06:44:34] sql.INFO: [12.52] select * from `menu` [] []
-[2024-10-29 06:45:14] sql.INFO: [20.96] insert into `menu` (`label`, `url`, `icon`, `selected_icon`, `sort`, `pid_arr`, `pid`) values ('测试顶级导航', '/#/top', 'http://192.168.1.201:9501/image/20241029/1730184298773667.png', 'http://192.168.1.201:9501/image/20241029/1730184303296818.png', '11', '[0]', '0') [] []
-[2024-10-29 06:45:14] sql.INFO: [1.74] select * from `menu` [] []
-[2024-10-29 06:53:19] sql.INFO: [4.81] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
-[2024-10-29 06:53:19] sql.INFO: [4.89] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
-[2024-10-29 06:53:19] sql.INFO: [1.53] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74', '75', '76', '77', '78', '79', '80', '83', '84') [] []
-[2024-10-29 06:53:33] sql.INFO: [1.6] select * from `user` where (`user_name` = '1') limit 1 [] []
-[2024-10-29 06:53:33] sql.INFO: [1.73] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
-[2024-10-29 06:53:33] sql.INFO: [1.61] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74', '75', '76', '77', '78', '79', '80', '83', '84') [] []
-[2024-10-29 06:53:33] sql.INFO: [1.8] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
-[2024-10-29 06:53:44] sql.INFO: [1.7] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '32') limit 1 [] []
-[2024-10-29 06:53:44] sql.INFO: [1.86] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '32' limit 1 [] []
-[2024-10-29 06:53:44] sql.INFO: [2.28] select * from `menu` where `id` in ('1', '4', '8', '33', '34', '35', '49', '51', '52', '58', '59', '60', '64', '65', '66', '67', '68', '69', '71', '72', '73', '74', '75', '76', '77', '78', '79', '80', '83', '84') [] []
-[2024-10-29 06:56:51] sql.INFO: [10.05] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '73' limit 1 [] []
-[2024-10-29 06:56:51] sql.INFO: [2.02] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
-[2024-10-29 06:56:51] sql.INFO: [2.29] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
-[2024-10-29 07:06:29] sql.INFO: [10.22] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '73' limit 1 [] []
-[2024-10-29 07:06:29] sql.INFO: [2.19] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
-[2024-10-29 07:06:29] sql.INFO: [2.15] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
-[2024-10-29 07:06:52] sql.INFO: [3.3] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '73' limit 1 [] []
-[2024-10-29 07:06:52] sql.INFO: [1.67] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
-[2024-10-29 07:06:52] sql.INFO: [1.36] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []
-[2024-10-29 07:07:50] sql.INFO: [1.63] select `user`.*, `user_info`.`id` as `user_info_id`, `user_info`.`id_card`, `user_info`.`birthday`, `user_info`.`gender`, `user_info`.`real_name` from `user` left join `user_info` on `user`.`id` = `user_info`.`user_id` where `user`.`id` = '73' limit 1 [] []
-[2024-10-29 07:07:50] sql.INFO: [3.38] select * from `role_user` left join `role` on `role`.`id` = `role_user`.`role_id` where (`role_user`.`user_id` = '73') limit 1 [] []
-[2024-10-29 07:07:50] sql.INFO: [2.59] select * from `menu` where `id` in ('77', '78', '79', '80', '83', '84', '85', '86', '87', '88', '89') [] []

Some files were not shown because too many files changed in this diff