From f83de1256d81688507e87ea03ac12780a471492f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Sun, 27 Mar 2022 18:49:10 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/admin/controller/api/Runtime.php | 7 +++---- app/admin/controller/api/Upload.php | 5 ++--- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/app/admin/controller/api/Runtime.php b/app/admin/controller/api/Runtime.php index 4a19f8f09..512b7787e 100644 --- a/app/admin/controller/api/Runtime.php +++ b/app/admin/controller/api/Runtime.php @@ -16,7 +16,6 @@ namespace app\admin\controller\api; -use Exception; use think\admin\Controller; use think\admin\model\SystemConfig; use think\admin\service\AdminService; @@ -44,7 +43,7 @@ class Runtime extends Controller $this->success('网站缓存加速成功!', 'javascript:location.reload()'); } catch (HttpResponseException $exception) { throw $exception; - } catch (Exception $exception) { + } catch (\Exception $exception) { $this->error($exception->getMessage()); } else { $this->error('只有超级管理员才能操作!'); @@ -64,7 +63,7 @@ class Runtime extends Controller $this->success('清空缓存日志成功!', 'javascript:location.reload()'); } catch (HttpResponseException $exception) { throw $exception; - } catch (Exception $exception) { + } catch (\Exception $exception) { $this->error($exception->getMessage()); } else { $this->error('只有超级管理员才能操作!'); @@ -112,7 +111,7 @@ class Runtime extends Controller $this->success('清理系统配置成功!', 'javascript:location.reload()'); } catch (HttpResponseException $exception) { throw $exception; - } catch (Exception $exception) { + } catch (\Exception $exception) { $this->error($exception->getMessage()); } else { $this->error('只有超级管理员才能操作!'); diff --git a/app/admin/controller/api/Upload.php b/app/admin/controller/api/Upload.php index 4c6801893..91ee0c840 100644 --- a/app/admin/controller/api/Upload.php +++ b/app/admin/controller/api/Upload.php @@ -16,7 +16,6 @@ namespace app\admin\controller\api; -use Exception; use think\admin\Controller; use think\admin\Storage; use think\admin\storage\AliossStorage; @@ -153,7 +152,7 @@ class Upload extends Controller } } catch (HttpResponseException $exception) { throw $exception; - } catch (Exception $exception) { + } catch (\Exception $exception) { $this->error($exception->getMessage()); } } @@ -199,7 +198,7 @@ class Upload extends Controller } } catch (HttpResponseException $exception) { throw $exception; - } catch (Exception $exception) { + } catch (\Exception $exception) { $this->error(lang($exception->getMessage())); } }