ComposerUpdate

This commit is contained in:
Anyon 2019-12-17 18:43:19 +08:00
parent 5325601793
commit 13722fd0ab
4 changed files with 10 additions and 10 deletions

8
composer.lock generated
View File

@ -909,12 +909,12 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git", "url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "1f0c1902fcab3cd7d257f79d607712619a4b660e" "reference": "d70ad59df16eebb63e7d8a5596cc943e90d928c9"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/1f0c1902fcab3cd7d257f79d607712619a4b660e", "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/d70ad59df16eebb63e7d8a5596cc943e90d928c9",
"reference": "1f0c1902fcab3cd7d257f79d607712619a4b660e", "reference": "d70ad59df16eebb63e7d8a5596cc943e90d928c9",
"shasum": "", "shasum": "",
"mirrors": [ "mirrors": [
{ {
@ -958,7 +958,7 @@
], ],
"description": "ThinkPHP v6.0 Development Library", "description": "ThinkPHP v6.0 Development Library",
"homepage": "http://framework.thinkadmin.top", "homepage": "http://framework.thinkadmin.top",
"time": "2019-12-17T10:24:30+00:00" "time": "2019-12-17T10:36:55+00:00"
}, },
{ {
"name": "zoujingli/wechat-developer", "name": "zoujingli/wechat-developer",

View File

@ -935,12 +935,12 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git", "url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "1f0c1902fcab3cd7d257f79d607712619a4b660e" "reference": "d70ad59df16eebb63e7d8a5596cc943e90d928c9"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/1f0c1902fcab3cd7d257f79d607712619a4b660e", "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/d70ad59df16eebb63e7d8a5596cc943e90d928c9",
"reference": "1f0c1902fcab3cd7d257f79d607712619a4b660e", "reference": "d70ad59df16eebb63e7d8a5596cc943e90d928c9",
"shasum": "", "shasum": "",
"mirrors": [ "mirrors": [
{ {
@ -956,7 +956,7 @@
"ext-json": "*", "ext-json": "*",
"topthink/framework": "^6.0" "topthink/framework": "^6.0"
}, },
"time": "2019-12-17T10:24:30+00:00", "time": "2019-12-17T10:36:55+00:00",
"type": "library", "type": "library",
"extra": { "extra": {
"think": { "think": {

2
vendor/services.php vendored
View File

@ -1,5 +1,5 @@
<?php <?php
// This file is automatically generated at:2019-12-17 18:30:13 // This file is automatically generated at:2019-12-17 18:43:07
declare (strict_types = 1); declare (strict_types = 1);
return array ( return array (
0 => 'think\\app\\Service', 0 => 'think\\app\\Service',

View File

@ -83,7 +83,7 @@ class JsonRpcClientService extends Service
if (is_null($response['error'])) { if (is_null($response['error'])) {
return $response['result']; return $response['result'];
} else { } else {
throw new \think\Exception("请求错误:[{$response['error']['code']}] {$response['error']['message']}"); throw new \think\Exception("请求错误:{$response['error']['message']}", $response['error']['code']);
} }
} }
} }