From 6349056e63e80d66f2859d9eed511f0389c684af Mon Sep 17 00:00:00 2001 From: Anyon Date: Wed, 17 Jul 2019 11:04:38 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]CompoerUpdate?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/store/command/AutoRun.php | 5 +- application/wechat/command/fans/FansAll.php | 2 +- application/wechat/command/fans/FansBlack.php | 2 +- application/wechat/command/fans/FansList.php | 2 +- application/wechat/command/fans/FansTags.php | 2 +- vendor/autoload.php | 2 +- vendor/composer/autoload_real.php | 14 +-- vendor/composer/autoload_static.php | 8 +- vendor/composer/installed.json | 8 +- .../think-library/src/Controller.php | 100 +++++++++++++----- vendor/zoujingli/think-library/src/File.php | 1 + .../think-library/src/command/Sess.php | 3 +- .../think-library/src/command/Sync.php | 1 + .../think-library/src/command/Task.php | 1 + .../think-library/src/command/sync/Admin.php | 3 +- .../think-library/src/command/sync/Config.php | 3 +- .../think-library/src/command/sync/Plugs.php | 3 +- .../src/command/sync/Service.php | 3 +- .../think-library/src/command/sync/Wechat.php | 3 +- .../think-library/src/command/task/Reset.php | 3 +- .../think-library/src/command/task/Start.php | 3 +- .../think-library/src/command/task/State.php | 3 +- .../think-library/src/command/task/Stop.php | 3 +- vendor/zoujingli/think-library/src/common.php | 4 +- .../think-library/src/driver/Local.php | 1 + .../think-library/src/driver/Oss.php | 1 + .../think-library/src/driver/Qiniu.php | 4 +- .../think-library/src/logic/Delete.php | 1 + .../think-library/src/logic/Form.php | 1 + .../think-library/src/logic/Input.php | 1 + .../think-library/src/logic/Logic.php | 1 + .../think-library/src/logic/Page.php | 1 + .../think-library/src/logic/Query.php | 1 + .../think-library/src/logic/Save.php | 1 + .../think-library/src/tools/Crypt.php | 1 + .../think-library/src/tools/Csrf.php | 1 + .../zoujingli/think-library/src/tools/Csv.php | 1 + .../think-library/src/tools/Data.php | 1 + .../think-library/src/tools/Emoji.php | 1 + .../think-library/src/tools/Express.php | 1 + .../think-library/src/tools/Http.php | 1 + .../think-library/src/tools/Node.php | 1 + .../think-library/src/tools/Options.php | 1 + 43 files changed, 147 insertions(+), 57 deletions(-) diff --git a/application/store/command/AutoRun.php b/application/store/command/AutoRun.php index 9d27d8ea1..0c2733cbd 100644 --- a/application/store/command/AutoRun.php +++ b/application/store/command/AutoRun.php @@ -25,9 +25,12 @@ use think\Db; class AutoRun extends \think\console\Command { + /** + * 配置指令信息 + */ protected function configure() { - $this->setName('xclean:store')->setDescription('clean up invalid store records'); + $this->setName('xclean:store')->setDescription('清理过期无效的订单记录'); } /** diff --git a/application/wechat/command/fans/FansAll.php b/application/wechat/command/fans/FansAll.php index ca70582bd..daf593bf5 100644 --- a/application/wechat/command/fans/FansAll.php +++ b/application/wechat/command/fans/FansAll.php @@ -30,6 +30,6 @@ class FansAll extends Fans protected function configure() { $this->module = ['list', 'black', 'tags']; - $this->setName('xfans:all')->setDescription('synchronize all of fans'); + $this->setName('xfans:all')->setDescription('从微信获取所有粉丝记录和标签'); } } diff --git a/application/wechat/command/fans/FansBlack.php b/application/wechat/command/fans/FansBlack.php index b07989aed..f6a31bf3a 100644 --- a/application/wechat/command/fans/FansBlack.php +++ b/application/wechat/command/fans/FansBlack.php @@ -30,6 +30,6 @@ class FansBlack extends Fans protected function configure() { $this->module = ['black']; - $this->setName('xfans:black')->setDescription('synchronize black of fans'); + $this->setName('xfans:black')->setDescription('从微信获取黑名单中的粉丝记录'); } } diff --git a/application/wechat/command/fans/FansList.php b/application/wechat/command/fans/FansList.php index 0569e9915..766d8afbd 100644 --- a/application/wechat/command/fans/FansList.php +++ b/application/wechat/command/fans/FansList.php @@ -30,7 +30,7 @@ class FansList extends Fans protected function configure() { $this->module = ['list']; - $this->setName('xfans:list')->setDescription('synchronize list of fans'); + $this->setName('xfans:list')->setDescription('从微信获取所有的粉丝信息记录'); } } diff --git a/application/wechat/command/fans/FansTags.php b/application/wechat/command/fans/FansTags.php index 5ff150484..397e34c7a 100644 --- a/application/wechat/command/fans/FansTags.php +++ b/application/wechat/command/fans/FansTags.php @@ -30,6 +30,6 @@ class FansTags extends Fans protected function configure() { $this->module = ['tags']; - $this->setName('xfans:tags')->setDescription('synchronize tags of fans'); + $this->setName('xfans:tags')->setDescription('从微信获取所有的粉丝标签记录'); } } diff --git a/vendor/autoload.php b/vendor/autoload.php index a780d2969..004833584 100644 --- a/vendor/autoload.php +++ b/vendor/autoload.php @@ -4,4 +4,4 @@ require_once __DIR__ . '/composer/autoload_real.php'; -return ComposerAutoloaderInit9f532fe51df20fe03503300614827aa4::getLoader(); +return ComposerAutoloaderInit2c3e264f6aacabac4f7c7e4fa8041abe::getLoader(); diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php index 3cc438544..df5eacd0c 100644 --- a/vendor/composer/autoload_real.php +++ b/vendor/composer/autoload_real.php @@ -2,7 +2,7 @@ // autoload_real.php @generated by Composer -class ComposerAutoloaderInit9f532fe51df20fe03503300614827aa4 +class ComposerAutoloaderInit2c3e264f6aacabac4f7c7e4fa8041abe { private static $loader; @@ -19,15 +19,15 @@ class ComposerAutoloaderInit9f532fe51df20fe03503300614827aa4 return self::$loader; } - spl_autoload_register(array('ComposerAutoloaderInit9f532fe51df20fe03503300614827aa4', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInit2c3e264f6aacabac4f7c7e4fa8041abe', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(); - spl_autoload_unregister(array('ComposerAutoloaderInit9f532fe51df20fe03503300614827aa4', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInit2c3e264f6aacabac4f7c7e4fa8041abe', 'loadClassLoader')); $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); if ($useStaticLoader) { require_once __DIR__ . '/autoload_static.php'; - call_user_func(\Composer\Autoload\ComposerStaticInit9f532fe51df20fe03503300614827aa4::getInitializer($loader)); + call_user_func(\Composer\Autoload\ComposerStaticInit2c3e264f6aacabac4f7c7e4fa8041abe::getInitializer($loader)); } else { $map = require __DIR__ . '/autoload_namespaces.php'; foreach ($map as $namespace => $path) { @@ -48,19 +48,19 @@ class ComposerAutoloaderInit9f532fe51df20fe03503300614827aa4 $loader->register(true); if ($useStaticLoader) { - $includeFiles = Composer\Autoload\ComposerStaticInit9f532fe51df20fe03503300614827aa4::$files; + $includeFiles = Composer\Autoload\ComposerStaticInit2c3e264f6aacabac4f7c7e4fa8041abe::$files; } else { $includeFiles = require __DIR__ . '/autoload_files.php'; } foreach ($includeFiles as $fileIdentifier => $file) { - composerRequire9f532fe51df20fe03503300614827aa4($fileIdentifier, $file); + composerRequire2c3e264f6aacabac4f7c7e4fa8041abe($fileIdentifier, $file); } return $loader; } } -function composerRequire9f532fe51df20fe03503300614827aa4($fileIdentifier, $file) +function composerRequire2c3e264f6aacabac4f7c7e4fa8041abe($fileIdentifier, $file) { if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { require $file; diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index a31a28f34..2e2edad64 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -4,7 +4,7 @@ namespace Composer\Autoload; -class ComposerStaticInit9f532fe51df20fe03503300614827aa4 +class ComposerStaticInit2c3e264f6aacabac4f7c7e4fa8041abe { public static $files = array ( '841780ea2e1d6545ea3a253239d59c05' => __DIR__ . '/..' . '/qiniu/php-sdk/src/Qiniu/functions.php', @@ -347,9 +347,9 @@ class ComposerStaticInit9f532fe51df20fe03503300614827aa4 public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInit9f532fe51df20fe03503300614827aa4::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInit9f532fe51df20fe03503300614827aa4::$prefixDirsPsr4; - $loader->classMap = ComposerStaticInit9f532fe51df20fe03503300614827aa4::$classMap; + $loader->prefixLengthsPsr4 = ComposerStaticInit2c3e264f6aacabac4f7c7e4fa8041abe::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInit2c3e264f6aacabac4f7c7e4fa8041abe::$prefixDirsPsr4; + $loader->classMap = ComposerStaticInit2c3e264f6aacabac4f7c7e4fa8041abe::$classMap; }, null, ClassLoader::class); } diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 001331082..4a0b048c9 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -502,12 +502,12 @@ "source": { "type": "git", "url": "https://github.com/zoujingli/ThinkLibrary.git", - "reference": "861a56cda1b7a0b6ae9a781aa4bd834491d2d03b" + "reference": "3c08c4e18f76399a5387f2af807a4049d544284c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/861a56cda1b7a0b6ae9a781aa4bd834491d2d03b", - "reference": "861a56cda1b7a0b6ae9a781aa4bd834491d2d03b", + "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/3c08c4e18f76399a5387f2af807a4049d544284c", + "reference": "3c08c4e18f76399a5387f2af807a4049d544284c", "shasum": "", "mirrors": [ { @@ -526,7 +526,7 @@ "qiniu/php-sdk": "^7.2", "topthink/framework": "5.1.*" }, - "time": "2019-07-15T06:16:28+00:00", + "time": "2019-07-17T02:59:08+00:00", "type": "library", "installation-source": "dist", "autoload": { diff --git a/vendor/zoujingli/think-library/src/Controller.php b/vendor/zoujingli/think-library/src/Controller.php index bb5414b2f..1615dae95 100644 --- a/vendor/zoujingli/think-library/src/Controller.php +++ b/vendor/zoujingli/think-library/src/Controller.php @@ -9,11 +9,17 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- namespace library; +use library\logic\Delete; +use library\logic\Input; +use library\logic\Page; +use library\logic\Query; +use library\logic\Save; use library\tools\Csrf; use think\exception\HttpResponseException; @@ -21,14 +27,6 @@ use think\exception\HttpResponseException; * 标准控制器基类 * -------------------------------- * Class Controller - * @package library - * -------------------------------- - * @method logic\Query _query($dbQuery) - * @method array _input($data, $rule = [], $info = []) - * @method mixed _delete($dbQuery, $pkField = '', $where = []) - * @method mixed _save($dbQuery, $data = [], $pkField = '', $where = []) - * @method mixed _form($dbQuery, $tplFile = '', $pkField = '', $where = [], $data = []) - * @method array _page($dbQuery, $isPage = true, $isDisplay = true, $total = false, $limit = 0) */ class Controller extends \stdClass { @@ -75,22 +73,6 @@ class Controller extends \stdClass } } - /** - * 实例方法调用 - * @param string $method 函数名称 - * @param array $arguments 调用参数 - * @return mixed - * @throws \ReflectionException - * @throws \think\Exception - */ - public function __call($method, $arguments = []) - { - if (class_exists($name = "library\\logic\\" . ucfirst(ltrim($method, '_')))) { - return (new \ReflectionClass($name))->newInstanceArgs($arguments)->init($this); - } - throw new \think\Exception('method not exists:' . get_class($this) . '->' . $method); - } - /** * 返回失败的操作 * @param mixed $info 消息内容 @@ -197,4 +179,74 @@ class Controller extends \stdClass } } + /** + * 快捷查询逻辑器 + * @param string|\think\db\Query $dbQuery + * @return Query + */ + protected function _query($dbQuery) + { + return (new Query($dbQuery))->init($this); + } + + /** + * 快捷分页逻辑器 + * @param string|\think\db\Query $dbQuery + * @param boolean $isPage 是否启用分页 + * @param boolean $isDisplay 是否渲染模板 + * @param boolean $total 集合分页记录数 + * @param integer $limit 集合每页记录数 + * @return array + * @throws \think\Exception + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\ModelNotFoundException + * @throws \think\exception\DbException + * @throws \think\exception\PDOException + */ + protected function _page($dbQuery, $isPage = true, $isDisplay = true, $total = false, $limit = 0) + { + return (new Page($dbQuery, $isPage, $isDisplay, $total, $limit))->init($this); + } + + /** + * 快捷更新逻辑器 + * @param string|\think\db\Query $dbQuery + * @param array $data 表单扩展数据 + * @param string $pkField 数据对象主键 + * @param array $where 额外更新条件 + * @return boolean + * @throws \think\Exception + * @throws \think\exception\PDOException + */ + protected function _save($dbQuery, $data = [], $pkField = '', $where = []) + { + return (new Save($dbQuery, $data, $pkField, $where))->init($this); + } + + /** + * 快捷输入逻辑器 + * @param array $data 验证数据 + * @param array $rule 验证规则 + * @param array $info 验证消息 + * @return array + */ + protected function _input($data, $rule = [], $info = []) + { + return (new Input($data, $rule, $info))->init($this); + } + + /** + * 快捷删除逻辑器 + * @param string|\think\db\Query $dbQuery + * @param string $pkField 数据对象主键 + * @param array $where 额外更新条件 + * @return boolean|null + * @throws \think\Exception + * @throws \think\exception\PDOException + */ + protected function _delete($dbQuery, $pkField = '', $where = []) + { + return (new Delete($dbQuery, $pkField, $where))->init($this); + } + } diff --git a/vendor/zoujingli/think-library/src/File.php b/vendor/zoujingli/think-library/src/File.php index 33a3b2509..01ddfffcb 100644 --- a/vendor/zoujingli/think-library/src/File.php +++ b/vendor/zoujingli/think-library/src/File.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- diff --git a/vendor/zoujingli/think-library/src/command/Sess.php b/vendor/zoujingli/think-library/src/command/Sess.php index 049a26038..7e6edd622 100644 --- a/vendor/zoujingli/think-library/src/command/Sess.php +++ b/vendor/zoujingli/think-library/src/command/Sess.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- @@ -26,7 +27,7 @@ class Sess extends Command protected function configure() { - $this->setName('xclean:session')->setDescription('clean up invalid session files'); + $this->setName('xclean:session')->setDescription('清理失效过期的会话文件'); } protected function execute(\think\console\Input $input, \think\console\Output $output) diff --git a/vendor/zoujingli/think-library/src/command/Sync.php b/vendor/zoujingli/think-library/src/command/Sync.php index dfbb3c043..eb567aed0 100644 --- a/vendor/zoujingli/think-library/src/command/Sync.php +++ b/vendor/zoujingli/think-library/src/command/Sync.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- diff --git a/vendor/zoujingli/think-library/src/command/Task.php b/vendor/zoujingli/think-library/src/command/Task.php index 3b886a898..811305c07 100644 --- a/vendor/zoujingli/think-library/src/command/Task.php +++ b/vendor/zoujingli/think-library/src/command/Task.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- diff --git a/vendor/zoujingli/think-library/src/command/sync/Admin.php b/vendor/zoujingli/think-library/src/command/sync/Admin.php index 3226f5cba..9c0d84971 100644 --- a/vendor/zoujingli/think-library/src/command/sync/Admin.php +++ b/vendor/zoujingli/think-library/src/command/sync/Admin.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- @@ -27,7 +28,7 @@ class Admin extends Sync protected function configure() { $this->modules = ['application/admin/', 'think']; - $this->setName('xsync:admin')->setDescription('synchronize update admin module files'); + $this->setName('xsync:admin')->setDescription('从远程覆盖本地Admin模块的所有代码'); } protected function execute(Input $input, Output $output) diff --git a/vendor/zoujingli/think-library/src/command/sync/Config.php b/vendor/zoujingli/think-library/src/command/sync/Config.php index f8c484fe9..2bb4d3765 100644 --- a/vendor/zoujingli/think-library/src/command/sync/Config.php +++ b/vendor/zoujingli/think-library/src/command/sync/Config.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- @@ -27,7 +28,7 @@ class Config extends Sync protected function configure() { $this->modules = ['config/']; - $this->setName('xsync:config')->setDescription('synchronize update config php files'); + $this->setName('xsync:config')->setDescription('从远程覆盖本地Config的部分配置文件'); } protected function execute(Input $input, Output $output) diff --git a/vendor/zoujingli/think-library/src/command/sync/Plugs.php b/vendor/zoujingli/think-library/src/command/sync/Plugs.php index e696440ef..a5b70136e 100644 --- a/vendor/zoujingli/think-library/src/command/sync/Plugs.php +++ b/vendor/zoujingli/think-library/src/command/sync/Plugs.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- @@ -27,7 +28,7 @@ class Plugs extends Sync protected function configure() { $this->modules = ['public/static/']; - $this->setName('xsync:plugs')->setDescription('synchronize update plugs static files'); + $this->setName('xsync:plugs')->setDescription('从远程覆盖本地Plugs资源插件等代码'); } protected function execute(Input $input, Output $output) diff --git a/vendor/zoujingli/think-library/src/command/sync/Service.php b/vendor/zoujingli/think-library/src/command/sync/Service.php index 1bac58649..d9f85a018 100644 --- a/vendor/zoujingli/think-library/src/command/sync/Service.php +++ b/vendor/zoujingli/think-library/src/command/sync/Service.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- @@ -27,7 +28,7 @@ class Service extends Sync protected function configure() { $this->modules = ['application/service/']; - $this->setName('xsync:service')->setDescription('synchronize update service module files'); + $this->setName('xsync:service')->setDescription('从远程覆盖本地Service模块的所有代码'); } protected function execute(Input $input, Output $output) diff --git a/vendor/zoujingli/think-library/src/command/sync/Wechat.php b/vendor/zoujingli/think-library/src/command/sync/Wechat.php index e0132b741..8d0498b09 100644 --- a/vendor/zoujingli/think-library/src/command/sync/Wechat.php +++ b/vendor/zoujingli/think-library/src/command/sync/Wechat.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- @@ -27,7 +28,7 @@ class Wechat extends Sync protected function configure() { $this->modules = ['application/wechat/']; - $this->setName('xsync:wechat')->setDescription('synchronize update wechat module files'); + $this->setName('xsync:wechat')->setDescription('从远程覆盖本地Wechat模块的所有代码'); } protected function execute(Input $input, Output $output) diff --git a/vendor/zoujingli/think-library/src/command/task/Reset.php b/vendor/zoujingli/think-library/src/command/task/Reset.php index c28a3de0d..7d0723838 100644 --- a/vendor/zoujingli/think-library/src/command/task/Reset.php +++ b/vendor/zoujingli/think-library/src/command/task/Reset.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- @@ -25,7 +26,7 @@ class Reset extends Task protected function configure() { - $this->setName('xtask:reset')->setDescription('reset message queue daemon'); + $this->setName('xtask:reset')->setDescription('重新启动消息队列守护进程'); } protected function execute(\think\console\Input $input, \think\console\Output $output) diff --git a/vendor/zoujingli/think-library/src/command/task/Start.php b/vendor/zoujingli/think-library/src/command/task/Start.php index 6c4f0366d..0b203661b 100644 --- a/vendor/zoujingli/think-library/src/command/task/Start.php +++ b/vendor/zoujingli/think-library/src/command/task/Start.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- @@ -25,7 +26,7 @@ class Start extends Task protected function configure() { - $this->setName('xtask:start')->setDescription('start message queue daemon'); + $this->setName('xtask:start')->setDescription('开始启动消息队列守护进程'); } protected function execute(\think\console\Input $input, \think\console\Output $output) diff --git a/vendor/zoujingli/think-library/src/command/task/State.php b/vendor/zoujingli/think-library/src/command/task/State.php index 2f4195154..9d8db3339 100644 --- a/vendor/zoujingli/think-library/src/command/task/State.php +++ b/vendor/zoujingli/think-library/src/command/task/State.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- @@ -25,7 +26,7 @@ class State extends Task protected function configure() { - $this->setName('xtask:state')->setDescription('view message queue daemon'); + $this->setName('xtask:state')->setDescription('查看消息队列守护进程状态'); } protected function execute(\think\console\Input $input, \think\console\Output $output) diff --git a/vendor/zoujingli/think-library/src/command/task/Stop.php b/vendor/zoujingli/think-library/src/command/task/Stop.php index a1584e3ba..8c15ee375 100644 --- a/vendor/zoujingli/think-library/src/command/task/Stop.php +++ b/vendor/zoujingli/think-library/src/command/task/Stop.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- @@ -25,7 +26,7 @@ class Stop extends Task protected function configure() { - $this->setName('xtask:stop')->setDescription('stop message queue daemon'); + $this->setName('xtask:stop')->setDescription('立即停止消息队列守护进程'); } protected function execute(\think\console\Input $input, \think\console\Output $output) diff --git a/vendor/zoujingli/think-library/src/common.php b/vendor/zoujingli/think-library/src/common.php index ac12e8909..7edef2a7c 100644 --- a/vendor/zoujingli/think-library/src/common.php +++ b/vendor/zoujingli/think-library/src/common.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- @@ -18,6 +19,7 @@ use library\tools\Data; use library\tools\Emoji; use library\tools\Http; use library\tools\Node; +use think\Console; use think\Db; use think\facade\Cache; use think\facade\Middleware; @@ -246,7 +248,7 @@ Middleware::add(function (Request $request, \Closure $next, $header = []) { }); // 注册系统常用指令 -\think\Console::addDefaultCommands([ +Console::addDefaultCommands([ 'library\command\Sess', 'library\command\task\Stop', 'library\command\task\State', diff --git a/vendor/zoujingli/think-library/src/driver/Local.php b/vendor/zoujingli/think-library/src/driver/Local.php index 694c64bce..7ad625d67 100644 --- a/vendor/zoujingli/think-library/src/driver/Local.php +++ b/vendor/zoujingli/think-library/src/driver/Local.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- diff --git a/vendor/zoujingli/think-library/src/driver/Oss.php b/vendor/zoujingli/think-library/src/driver/Oss.php index 012ae8e40..d5ac62ba7 100644 --- a/vendor/zoujingli/think-library/src/driver/Oss.php +++ b/vendor/zoujingli/think-library/src/driver/Oss.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- diff --git a/vendor/zoujingli/think-library/src/driver/Qiniu.php b/vendor/zoujingli/think-library/src/driver/Qiniu.php index 6a8fe85f5..6c0e04ccb 100644 --- a/vendor/zoujingli/think-library/src/driver/Qiniu.php +++ b/vendor/zoujingli/think-library/src/driver/Qiniu.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- @@ -163,7 +164,8 @@ class Qiniu extends File /** * 获取空间列表 - * @return array + * @return string + * @throws \Exception */ public function getBucketList() { diff --git a/vendor/zoujingli/think-library/src/logic/Delete.php b/vendor/zoujingli/think-library/src/logic/Delete.php index e66c55f37..6ec567d75 100644 --- a/vendor/zoujingli/think-library/src/logic/Delete.php +++ b/vendor/zoujingli/think-library/src/logic/Delete.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- diff --git a/vendor/zoujingli/think-library/src/logic/Form.php b/vendor/zoujingli/think-library/src/logic/Form.php index 4762a61b7..2a79ee745 100644 --- a/vendor/zoujingli/think-library/src/logic/Form.php +++ b/vendor/zoujingli/think-library/src/logic/Form.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- diff --git a/vendor/zoujingli/think-library/src/logic/Input.php b/vendor/zoujingli/think-library/src/logic/Input.php index 562ee51a9..bb13cd012 100644 --- a/vendor/zoujingli/think-library/src/logic/Input.php +++ b/vendor/zoujingli/think-library/src/logic/Input.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- diff --git a/vendor/zoujingli/think-library/src/logic/Logic.php b/vendor/zoujingli/think-library/src/logic/Logic.php index 362c9f2b4..ffe1e19e3 100644 --- a/vendor/zoujingli/think-library/src/logic/Logic.php +++ b/vendor/zoujingli/think-library/src/logic/Logic.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- diff --git a/vendor/zoujingli/think-library/src/logic/Page.php b/vendor/zoujingli/think-library/src/logic/Page.php index 9d1d3d833..63c404456 100644 --- a/vendor/zoujingli/think-library/src/logic/Page.php +++ b/vendor/zoujingli/think-library/src/logic/Page.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- diff --git a/vendor/zoujingli/think-library/src/logic/Query.php b/vendor/zoujingli/think-library/src/logic/Query.php index 8214ba213..bfb7bf5e3 100644 --- a/vendor/zoujingli/think-library/src/logic/Query.php +++ b/vendor/zoujingli/think-library/src/logic/Query.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- diff --git a/vendor/zoujingli/think-library/src/logic/Save.php b/vendor/zoujingli/think-library/src/logic/Save.php index a880115a6..36998180c 100644 --- a/vendor/zoujingli/think-library/src/logic/Save.php +++ b/vendor/zoujingli/think-library/src/logic/Save.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- diff --git a/vendor/zoujingli/think-library/src/tools/Crypt.php b/vendor/zoujingli/think-library/src/tools/Crypt.php index 39b5ad910..b414e5e69 100644 --- a/vendor/zoujingli/think-library/src/tools/Crypt.php +++ b/vendor/zoujingli/think-library/src/tools/Crypt.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- diff --git a/vendor/zoujingli/think-library/src/tools/Csrf.php b/vendor/zoujingli/think-library/src/tools/Csrf.php index 9032eaf1a..06a00c7e0 100644 --- a/vendor/zoujingli/think-library/src/tools/Csrf.php +++ b/vendor/zoujingli/think-library/src/tools/Csrf.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- diff --git a/vendor/zoujingli/think-library/src/tools/Csv.php b/vendor/zoujingli/think-library/src/tools/Csv.php index f951d7a9c..9bfb5e403 100644 --- a/vendor/zoujingli/think-library/src/tools/Csv.php +++ b/vendor/zoujingli/think-library/src/tools/Csv.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- diff --git a/vendor/zoujingli/think-library/src/tools/Data.php b/vendor/zoujingli/think-library/src/tools/Data.php index 09f9d6531..f58420d4b 100644 --- a/vendor/zoujingli/think-library/src/tools/Data.php +++ b/vendor/zoujingli/think-library/src/tools/Data.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- diff --git a/vendor/zoujingli/think-library/src/tools/Emoji.php b/vendor/zoujingli/think-library/src/tools/Emoji.php index 7c340ff19..2139f2425 100644 --- a/vendor/zoujingli/think-library/src/tools/Emoji.php +++ b/vendor/zoujingli/think-library/src/tools/Emoji.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- diff --git a/vendor/zoujingli/think-library/src/tools/Express.php b/vendor/zoujingli/think-library/src/tools/Express.php index 619ac7e06..7b1e38581 100644 --- a/vendor/zoujingli/think-library/src/tools/Express.php +++ b/vendor/zoujingli/think-library/src/tools/Express.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- diff --git a/vendor/zoujingli/think-library/src/tools/Http.php b/vendor/zoujingli/think-library/src/tools/Http.php index 767b209d0..ca70ec82a 100644 --- a/vendor/zoujingli/think-library/src/tools/Http.php +++ b/vendor/zoujingli/think-library/src/tools/Http.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- diff --git a/vendor/zoujingli/think-library/src/tools/Node.php b/vendor/zoujingli/think-library/src/tools/Node.php index 47d4aabae..20ba15b4e 100644 --- a/vendor/zoujingli/think-library/src/tools/Node.php +++ b/vendor/zoujingli/think-library/src/tools/Node.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- diff --git a/vendor/zoujingli/think-library/src/tools/Options.php b/vendor/zoujingli/think-library/src/tools/Options.php index c770b94a4..f214f24a7 100644 --- a/vendor/zoujingli/think-library/src/tools/Options.php +++ b/vendor/zoujingli/think-library/src/tools/Options.php @@ -9,6 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- +// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +----------------------------------------------------------------------