Procházet zdrojové kódy

【程序目录】更新日志信息

evoxwht před 3 roky
rodič
revize
5edb3befca

+ 3 - 3
crmeb/app/adminapi/AdminApiExceptionHandle.php

@@ -42,7 +42,7 @@ class AdminApiExceptionHandle extends Handle
      * @param Throwable $exception
      * @return void
      */
-    public function report(Throwable $exception):void
+    public function report(Throwable $exception): void
     {
         if (!$this->isIgnoreReport($exception)) {
             $data = [
@@ -72,10 +72,10 @@ class AdminApiExceptionHandle extends Handle
      * Render an exception into an HTTP response.
      * @access public
      * @param \think\Request $request
-     * @param Throwable      $e
+     * @param Throwable $e
      * @return Response
      */
-    public function render($request, Throwable $e):Response
+    public function render($request, Throwable $e): Response
     {
         $massageData = Env::get('app_debug', false) ? [
             'file' => $e->getFile(),

+ 3 - 3
crmeb/app/api/ApiExceptionHandle.php

@@ -42,7 +42,7 @@ class ApiExceptionHandle extends Handle
      * @param Throwable $exception
      * @return void
      */
-    public function report(Throwable $exception):void
+    public function report(Throwable $exception): void
     {
         if (!$this->isIgnoreReport($exception)) {
             $data = [
@@ -72,10 +72,10 @@ class ApiExceptionHandle extends Handle
      * Render an exception into an HTTP response.
      * @access public
      * @param \think\Request $request
-     * @param Throwable      $e
+     * @param Throwable $e
      * @return Response
      */
-    public function render($request, Throwable $e):Response
+    public function render($request, Throwable $e): Response
     {
         // 添加自定义异常处理机制
         if ($e instanceof DbException) {

+ 3 - 3
crmeb/app/kefuapi/KefuApiExceptionHandle.php

@@ -42,7 +42,7 @@ class KefuApiExceptionHandle extends Handle
      * @param Throwable $exception
      * @return void
      */
-    public function report(Throwable $exception):void
+    public function report(Throwable $exception): void
     {
         if (!$this->isIgnoreReport($exception)) {
             $data = [
@@ -72,10 +72,10 @@ class KefuApiExceptionHandle extends Handle
      * Render an exception into an HTTP response.
      * @access public
      * @param \think\Request $request
-     * @param Throwable      $e
+     * @param Throwable $e
      * @return Response
      */
-    public function render($request, Throwable $e):Response
+    public function render($request, Throwable $e): Response
     {
         $massageData = Config::get('app_debug', false) ? [
             'file' => $e->getFile(),