From 223d6e639c19eaf93ee1f001d29737c0aa66ad9f Mon Sep 17 00:00:00 2001 From: Anyon Date: Fri, 29 May 2020 11:46:46 +0800 Subject: [PATCH] ComposerUpdate --- vendor/composer/installed.json | 8 ++++---- vendor/services.php | 2 +- .../zoujingli/think-library/src/service/SystemService.php | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 69e62a54c..708a006aa 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -941,12 +941,12 @@ "source": { "type": "git", "url": "https://github.com/zoujingli/ThinkLibrary.git", - "reference": "be3dbd6eb7a91e62d3cca09d20b3b29e6cd76fe3" + "reference": "5e65a7f3312d1693f4f369de455b39641a140b00" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/be3dbd6eb7a91e62d3cca09d20b3b29e6cd76fe3", - "reference": "be3dbd6eb7a91e62d3cca09d20b3b29e6cd76fe3", + "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/5e65a7f3312d1693f4f369de455b39641a140b00", + "reference": "5e65a7f3312d1693f4f369de455b39641a140b00", "shasum": "", "mirrors": [ { @@ -962,7 +962,7 @@ "ext-json": "*", "topthink/framework": "^6.0" }, - "time": "2020-05-29T03:30:56+00:00", + "time": "2020-05-29T03:43:48+00:00", "type": "library", "extra": { "think": { diff --git a/vendor/services.php b/vendor/services.php index b77e9e39d..e371eed01 100644 --- a/vendor/services.php +++ b/vendor/services.php @@ -1,5 +1,5 @@ 'think\\app\\Service', diff --git a/vendor/zoujingli/think-library/src/service/SystemService.php b/vendor/zoujingli/think-library/src/service/SystemService.php index 6b3572ed5..8b165b0ba 100644 --- a/vendor/zoujingli/think-library/src/service/SystemService.php +++ b/vendor/zoujingli/think-library/src/service/SystemService.php @@ -325,7 +325,7 @@ class SystemService extends Service foreach (NodeService::instance()->getModules() as $module) { $path = $this->app->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . $module; file_exists($path) && is_dir($path) or mkdir($path, 0755, true); - $this->app->console->call("optimize:route {$module}"); + $this->app->console->call("optimize:route", [$module]); } }