ComposerUpdate

This commit is contained in:
Anyon 2020-05-12 10:38:41 +08:00
parent bd748b2283
commit 7adafb76fd
6 changed files with 6 additions and 6 deletions

View File

@ -39,7 +39,7 @@ class Fans extends Command
*/ */
protected function configure() protected function configure()
{ {
$this->setName('xadmin:fansall')->setDescription('Synchronize all wechat user data'); $this->setName('xadmin:fansall')->setDescription('Wechat Users Data Synchronize for ThinkAdmin');
} }
/** /**

2
vendor/services.php vendored
View File

@ -1,5 +1,5 @@
<?php <?php
// This file is automatically generated at:2020-05-11 17:27:15 // This file is automatically generated at:2020-05-11 18:18:49
declare (strict_types = 1); declare (strict_types = 1);
return array ( return array (
0 => 'think\\app\\Service', 0 => 'think\\app\\Service',

View File

@ -31,7 +31,7 @@ class Database extends Command
{ {
$this->setName('xadmin:database'); $this->setName('xadmin:database');
$this->addArgument('action', Argument::OPTIONAL, 'repair|optimize', 'optimize'); $this->addArgument('action', Argument::OPTIONAL, 'repair|optimize', 'optimize');
$this->setDescription('Optimize and Repair Database for ThinkAdmin'); $this->setDescription('Database Optimize and Repair for ThinkAdmin');
} }
/** /**

View File

@ -88,8 +88,8 @@ class Install extends Command
protected function configure() protected function configure()
{ {
$this->setName('xadmin:install'); $this->setName('xadmin:install');
$this->setDescription("Install and Update file for ThinkAdmin");
$this->addArgument('name', Argument::OPTIONAL, 'ModuleName', ''); $this->addArgument('name', Argument::OPTIONAL, 'ModuleName', '');
$this->setDescription("Source code Install and Update for ThinkAdmin");
} }
protected function execute(Input $input, Output $output) protected function execute(Input $input, Output $output)

View File

@ -53,7 +53,7 @@ class Queue extends Command
$this->addArgument('code', Argument::OPTIONAL, 'Taskcode'); $this->addArgument('code', Argument::OPTIONAL, 'Taskcode');
$this->addArgument('spts', Argument::OPTIONAL, 'Separator'); $this->addArgument('spts', Argument::OPTIONAL, 'Separator');
$this->addOption('daemon', 'd', Option::VALUE_NONE, 'Run the queue listen in daemon mode'); $this->addOption('daemon', 'd', Option::VALUE_NONE, 'Run the queue listen in daemon mode');
$this->setDescription('Asynchronous Command Queue for ThinkAdmin'); $this->setDescription('Asynchronous Command Queue Task for ThinkAdmin');
} }
/** /**

View File

@ -29,7 +29,7 @@ class Version extends Command
protected function configure() protected function configure()
{ {
$this->setName('xadmin:version'); $this->setName('xadmin:version');
$this->setDescription("Application and Framework Version for ThinkAdmin"); $this->setDescription("ThinkLibrary and ThinkPHP Version for ThinkAdmin");
} }
/** /**