refactor: 规范状态码、抛出异常的使用

This commit is contained in:
xboard
2023-12-07 04:01:32 +08:00
parent c25803aa74
commit 189b247ad8
71 changed files with 663 additions and 910 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ class ApiException extends Exception
protected $message; // 错误消息
protected $errors; // 全部错误信息
public function __construct($code = 400, $message = null, $errors = null)
public function __construct($message = null, $code = 400, $errors = null)
{
$this->message = $message;
$this->code = $code;
+1 -1
View File
@@ -58,7 +58,7 @@ class Handler extends ExceptionHandler
public function render($request, Throwable $exception)
{
if ($exception instanceof ViewException) {
$this->fail([500, '主题渲染失败。如更新主题,参数可能发生变化请重新配置主题后再试。']);
return $this->fail([500, '主题渲染失败。如更新主题,参数可能发生变化请重新配置主题后再试。']);
}
// ApiException主动抛出错误
if ($exception instanceof ApiException) {