FastMovieAI 二开基线 v1.0 (完整源码)

This commit is contained in:
李建琦
2026-08-26 18:41:02 +08:00
parent fad7690c0c
commit d54584f70d
888 changed files with 105571 additions and 1 deletions
+30
View File
@@ -0,0 +1,30 @@
<?php
namespace app\exception;
use app\expose\trait\Json;
use Throwable;
use Webman\Exception\ExceptionHandler;
use Webman\Http\Request;
use Webman\Http\Response;
use support\Log;
class Handler extends ExceptionHandler
{
use Json;
public function report(Throwable $exception)
{
parent::report($exception);
}
public function render(Request $request, Throwable $exception): Response
{
if ($request->expectsJson()) {
return $this->exception($exception);
}
if (config('app.debug')) {
Log::error($exception->getTraceAsString());
return parent::render($request, $exception);
}
return new Response(500, [], $exception->getMessage());
}
}