Compare commits

...

2 Commits

Author SHA1 Message Date
李东云
d1702f7726 chore(release): 1.0.2 2025-09-26 16:21:29 +08:00
李东云
45824755c6 fix(constants):修复业务错误默认消息拼写错误
- 将 'defaul' 更正为 'default'
- 修复 CommonErrorCode.php 中的拼写错误
- 确保错误消息显示正确

Signed-off-by: 李东云 <dongyu.li@luxcreo.ai>
2025-09-26 16:17:33 +08:00
4 changed files with 5 additions and 3 deletions

View File

@@ -1,4 +1,6 @@
# 版本更新日志
### [1.0.2](http://124.126.16.154:8888/singularity/HyperfDevelopmentKitCore/compare/v1.0.1...v1.0.2) (2025-09-26)
### [1.0.1](http://124.126.16.154:8888/singularity/HyperfDevelopmentKitCore/compare/v1.0.0...v1.0.1) (2025-08-19)

View File

@@ -1 +1 @@
1.0.1
1.0.2

View File

@@ -136,5 +136,5 @@
"url": "https://mirrors.aliyun.com/composer/"
}
},
"version": "1.0.1"
"version": "1.0.2"
}

View File

@@ -323,7 +323,7 @@ class CommonErrorCode extends AbstractConstants
// 500 业务错误
#[Message('common_error.business.defaul')]
#[Message('common_error.business.default')]
public const BUSINESS_ERROR = 500001;
// 501 版本问题
#[Message('common_error.business.old_version')]