From 7fcfb6249dad477d3980b7e1062f53c2b6381bd1 Mon Sep 17 00:00:00 2001 From: augushong Date: Mon, 1 Apr 2024 18:39:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BA=8B=E4=BB=B6=E5=BC=82?= =?UTF-8?q?=E5=B8=B8=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/common/exception/EventException.php | 2 +- extend/base/common/command/admin/VersionBase.php | 4 ++-- extend/base/common/exception/EventExceptionBase.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/common/exception/EventException.php b/app/common/exception/EventException.php index 6c6a8f5..249ec9b 100644 --- a/app/common/exception/EventException.php +++ b/app/common/exception/EventException.php @@ -2,7 +2,7 @@ namespace app\common\exception; -use extend\base\common\exception\EventExceptionBase; +use base\common\exception\EventExceptionBase; class EventException extends EventExceptionBase { diff --git a/extend/base/common/command/admin/VersionBase.php b/extend/base/common/command/admin/VersionBase.php index 41b9f54..d710d51 100644 --- a/extend/base/common/command/admin/VersionBase.php +++ b/extend/base/common/command/admin/VersionBase.php @@ -12,12 +12,12 @@ use think\console\Output; class VersionBase extends Command { - public const VERSION = 'v2.0.92'; + public const VERSION = 'v2.0.93'; public const LAYUI_VERSION = '2.8.17'; public const COMMENT = [ - '给系统代码增加异常抛出', + '修复事件异常错误', '发布新版本', ]; diff --git a/extend/base/common/exception/EventExceptionBase.php b/extend/base/common/exception/EventExceptionBase.php index 1b9f35c..0d624d9 100644 --- a/extend/base/common/exception/EventExceptionBase.php +++ b/extend/base/common/exception/EventExceptionBase.php @@ -1,6 +1,6 @@