ComposerUpdate

This commit is contained in:
Anyon 2019-12-02 17:04:06 +08:00
parent 49b3b95990
commit 8d4ef5cb36
4 changed files with 10 additions and 10 deletions

8
composer.lock generated
View File

@ -783,12 +783,12 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git", "url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "02651a8c227e2f8836f3aeaf4d18bb78184188f9" "reference": "913a6ed13c84bad23c698dd404c5c16418055670"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/02651a8c227e2f8836f3aeaf4d18bb78184188f9", "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/913a6ed13c84bad23c698dd404c5c16418055670",
"reference": "02651a8c227e2f8836f3aeaf4d18bb78184188f9", "reference": "913a6ed13c84bad23c698dd404c5c16418055670",
"shasum": "", "shasum": "",
"mirrors": [ "mirrors": [
{ {
@ -832,7 +832,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-02T06:12:46+00:00" "time": "2019-12-02T08:59:43+00:00"
} }
], ],
"packages-dev": [], "packages-dev": [],

View File

@ -805,12 +805,12 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git", "url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "02651a8c227e2f8836f3aeaf4d18bb78184188f9" "reference": "913a6ed13c84bad23c698dd404c5c16418055670"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/02651a8c227e2f8836f3aeaf4d18bb78184188f9", "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/913a6ed13c84bad23c698dd404c5c16418055670",
"reference": "02651a8c227e2f8836f3aeaf4d18bb78184188f9", "reference": "913a6ed13c84bad23c698dd404c5c16418055670",
"shasum": "", "shasum": "",
"mirrors": [ "mirrors": [
{ {
@ -826,7 +826,7 @@
"ext-json": "*", "ext-json": "*",
"topthink/framework": "^6.0" "topthink/framework": "^6.0"
}, },
"time": "2019-12-02T06:12:46+00:00", "time": "2019-12-02T08:59:43+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-02 14:16:38 // This file is automatically generated at:2019-12-02 17:03:50
declare (strict_types = 1); declare (strict_types = 1);
return array ( return array (
0 => 'think\\app\\Service', 0 => 'think\\app\\Service',

View File

@ -71,6 +71,6 @@ abstract class Helper
*/ */
public static function instance(): Helper public static function instance(): Helper
{ {
return Container::getInstance()->make(static::class); return Container::getInstance()->invokeClass(static::class);
} }
} }