ComposerUpdate

This commit is contained in:
Anyon 2020-04-09 22:21:50 +08:00
parent 5939dfa979
commit f6184c15c5
6 changed files with 34 additions and 11 deletions

8
composer.lock generated
View File

@ -909,12 +909,12 @@
"source": {
"type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "bf0d7accc9fc460d33954f2a9f7969fbfcb40c89"
"reference": "a6b2f3929c9853c700e45e260c2eaf0ed0aeda3f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/bf0d7accc9fc460d33954f2a9f7969fbfcb40c89",
"reference": "bf0d7accc9fc460d33954f2a9f7969fbfcb40c89",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/a6b2f3929c9853c700e45e260c2eaf0ed0aeda3f",
"reference": "a6b2f3929c9853c700e45e260c2eaf0ed0aeda3f",
"shasum": "",
"mirrors": [
{
@ -958,7 +958,7 @@
],
"description": "ThinkPHP v6.0 Development Library",
"homepage": "http://framework.thinkadmin.top",
"time": "2020-04-08T02:44:51+00:00"
"time": "2020-04-09T14:06:42+00:00"
},
{
"name": "zoujingli/wechat-developer",

View File

@ -935,12 +935,12 @@
"source": {
"type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "bf0d7accc9fc460d33954f2a9f7969fbfcb40c89"
"reference": "a6b2f3929c9853c700e45e260c2eaf0ed0aeda3f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/bf0d7accc9fc460d33954f2a9f7969fbfcb40c89",
"reference": "bf0d7accc9fc460d33954f2a9f7969fbfcb40c89",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/a6b2f3929c9853c700e45e260c2eaf0ed0aeda3f",
"reference": "a6b2f3929c9853c700e45e260c2eaf0ed0aeda3f",
"shasum": "",
"mirrors": [
{
@ -956,7 +956,7 @@
"ext-json": "*",
"topthink/framework": "^6.0"
},
"time": "2020-04-08T02:44:51+00:00",
"time": "2020-04-09T14:06:42+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-04-09 09:52:11
// This file is automatically generated at:2020-04-09 22:16:17
declare (strict_types = 1);
return array (
0 => 'think\\app\\Service',

View File

@ -95,4 +95,26 @@ class Command extends ThinkCommand
return $this;
}
/**
* 设置成功的消息
* @param string $message 消息内容
* @return Command
* @throws Exception
*/
protected function setQueueSuccessMessage($message)
{
return $this->setQueueMessage(3, $message);
}
/**
* 设置失败的消息
* @param string $message 消息内容
* @return Command
* @throws Exception
*/
protected function setQueueErrorMessage($message)
{
return $this->setQueueMessage(4, $message);
}
}

View File

@ -114,7 +114,7 @@ class Install extends Command
else foreach ($data as $file) {
list($state, $mode, $name) = InstallService::instance()->fileSynchronization($file);
if ($state) {
if ($mode === 'add') $this->output->writeln("--- {$name} added successfully");
if ($mode === 'add') $this->output->writeln("--- {$name} add successfully");
if ($mode === 'mod') $this->output->writeln("--- {$name} update successfully");
if ($mode === 'del') $this->output->writeln("--- {$name} delete successfully");
} else {

View File

@ -47,7 +47,8 @@ class CleanQueue extends Queue
* @param Input $input
* @param Output $output
* @throws \think\admin\Exception
* @throws \think\db\exception\DbException
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
*/
protected function execute(Input $input, Output $output)
{