修改注释

This commit is contained in:
邹景立 2022-03-27 18:49:10 +08:00
parent 3de6407014
commit f83de1256d
2 changed files with 5 additions and 7 deletions

View File

@ -16,7 +16,6 @@
namespace app\admin\controller\api; namespace app\admin\controller\api;
use Exception;
use think\admin\Controller; use think\admin\Controller;
use think\admin\model\SystemConfig; use think\admin\model\SystemConfig;
use think\admin\service\AdminService; use think\admin\service\AdminService;
@ -44,7 +43,7 @@ class Runtime extends Controller
$this->success('网站缓存加速成功!', 'javascript:location.reload()'); $this->success('网站缓存加速成功!', 'javascript:location.reload()');
} catch (HttpResponseException $exception) { } catch (HttpResponseException $exception) {
throw $exception; throw $exception;
} catch (Exception $exception) { } catch (\Exception $exception) {
$this->error($exception->getMessage()); $this->error($exception->getMessage());
} else { } else {
$this->error('只有超级管理员才能操作!'); $this->error('只有超级管理员才能操作!');
@ -64,7 +63,7 @@ class Runtime extends Controller
$this->success('清空缓存日志成功!', 'javascript:location.reload()'); $this->success('清空缓存日志成功!', 'javascript:location.reload()');
} catch (HttpResponseException $exception) { } catch (HttpResponseException $exception) {
throw $exception; throw $exception;
} catch (Exception $exception) { } catch (\Exception $exception) {
$this->error($exception->getMessage()); $this->error($exception->getMessage());
} else { } else {
$this->error('只有超级管理员才能操作!'); $this->error('只有超级管理员才能操作!');
@ -112,7 +111,7 @@ class Runtime extends Controller
$this->success('清理系统配置成功!', 'javascript:location.reload()'); $this->success('清理系统配置成功!', 'javascript:location.reload()');
} catch (HttpResponseException $exception) { } catch (HttpResponseException $exception) {
throw $exception; throw $exception;
} catch (Exception $exception) { } catch (\Exception $exception) {
$this->error($exception->getMessage()); $this->error($exception->getMessage());
} else { } else {
$this->error('只有超级管理员才能操作!'); $this->error('只有超级管理员才能操作!');

View File

@ -16,7 +16,6 @@
namespace app\admin\controller\api; namespace app\admin\controller\api;
use Exception;
use think\admin\Controller; use think\admin\Controller;
use think\admin\Storage; use think\admin\Storage;
use think\admin\storage\AliossStorage; use think\admin\storage\AliossStorage;
@ -153,7 +152,7 @@ class Upload extends Controller
} }
} catch (HttpResponseException $exception) { } catch (HttpResponseException $exception) {
throw $exception; throw $exception;
} catch (Exception $exception) { } catch (\Exception $exception) {
$this->error($exception->getMessage()); $this->error($exception->getMessage());
} }
} }
@ -199,7 +198,7 @@ class Upload extends Controller
} }
} catch (HttpResponseException $exception) { } catch (HttpResponseException $exception) {
throw $exception; throw $exception;
} catch (Exception $exception) { } catch (\Exception $exception) {
$this->error(lang($exception->getMessage())); $this->error(lang($exception->getMessage()));
} }
} }