ComposerUpdate

This commit is contained in:
Anyon 2020-08-22 13:04:23 +08:00
parent 7639414521
commit b33bac363d
6 changed files with 26 additions and 31 deletions

8
composer.lock generated
View File

@ -937,12 +937,12 @@
"source": {
"type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "3feaa83edec0dc5d4979f5eeb2eff872678bedec"
"reference": "1076fed8234de42aba3f3c6a51d55fd96f996272"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/3feaa83edec0dc5d4979f5eeb2eff872678bedec",
"reference": "3feaa83edec0dc5d4979f5eeb2eff872678bedec",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/1076fed8234de42aba3f3c6a51d55fd96f996272",
"reference": "1076fed8234de42aba3f3c6a51d55fd96f996272",
"shasum": "",
"mirrors": [
{
@ -987,7 +987,7 @@
],
"description": "ThinkPHP v6.0 Development Library",
"homepage": "http://thinkadmin.top",
"time": "2020-08-21T03:31:56+00:00"
"time": "2020-08-21T09:27:14+00:00"
},
{
"name": "zoujingli/wechat-developer",

View File

@ -57,8 +57,6 @@ return [
'fields_strict' => true,
// 是否需要断线重连
'break_reconnect' => false,
// 字段缓存路径
'schema_cache_path' => app()->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . 'schema' . DIRECTORY_SEPARATOR,
],
],
];

View File

@ -963,12 +963,12 @@
"source": {
"type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "3feaa83edec0dc5d4979f5eeb2eff872678bedec"
"reference": "1076fed8234de42aba3f3c6a51d55fd96f996272"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/3feaa83edec0dc5d4979f5eeb2eff872678bedec",
"reference": "3feaa83edec0dc5d4979f5eeb2eff872678bedec",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/1076fed8234de42aba3f3c6a51d55fd96f996272",
"reference": "1076fed8234de42aba3f3c6a51d55fd96f996272",
"shasum": "",
"mirrors": [
{
@ -985,7 +985,7 @@
"ext-mbstring": "*",
"topthink/framework": "^6.0"
},
"time": "2020-08-21T03:31:56+00:00",
"time": "2020-08-21T09:27:14+00:00",
"type": "library",
"extra": {
"think": {

2
vendor/services.php vendored
View File

@ -1,5 +1,5 @@
<?php
// This file is automatically generated at:2020-08-21 11:37:33
// This file is automatically generated at:2020-08-22 13:00:57
declare (strict_types = 1);
return array (
0 => 'think\\admin\\Library',

View File

@ -54,6 +54,7 @@ class DataExtend
foreach (static::arr2tree($list, $cid, $pid) as $attr) {
$attr[$cpath] = "{$ppath}-{$attr[$cid]}";
$attr['sub'] = $attr['sub'] ?? [];
$attr['spc'] = count($attr['sub']);
$attr['spt'] = substr_count($ppath, '-');
$attr['spl'] = str_repeat(" ├ ", $attr['spt']);
$sub = $attr['sub'];

View File

@ -164,10 +164,6 @@ class QueueService extends Service
if (is_null($message)) $message = '>>> 任务执行失败 <<<';
}
try {
// 文件缓存时,重置 opcache 缓存
if (function_exists('opcache_invalidate') && strtolower($this->app->cache->getDefaultDriver()) === 'file') {
@opcache_invalidate($this->app->cache->getCacheKey($cachefile), true);
}
$data = $this->app->cache->get($cachefile, [
'code' => $this->code, 'status' => $status, 'message' => $message, 'progress' => $progress, 'history' => [],
]);