From b094b8149e253c6b956379bae038253287b15a0a Mon Sep 17 00:00:00 2001 From: Anyon Date: Fri, 29 Nov 2019 10:25:57 +0800 Subject: [PATCH] ComposerUpdate --- application/admin/controller/Auth.php | 18 ++++++++++++++-- application/admin/controller/Index.php | 5 +++++ application/admin/controller/Menu.php | 11 ++++++++++ application/admin/controller/Message.php | 4 ++++ application/admin/controller/Oplog.php | 2 ++ application/admin/controller/User.php | 26 +++++++++++++++++++----- 6 files changed, 59 insertions(+), 7 deletions(-) diff --git a/application/admin/controller/Auth.php b/application/admin/controller/Auth.php index 642229812..dfa114a1a 100644 --- a/application/admin/controller/Auth.php +++ b/application/admin/controller/Auth.php @@ -92,7 +92,11 @@ class Auth extends Controller /** * 添加系统权限 - * @return array|string + * @throws \think\Exception + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\ModelNotFoundException + * @throws \think\exception\DbException + * @throws \think\exception\PDOException */ public function add() { @@ -102,7 +106,11 @@ class Auth extends Controller /** * 编辑系统权限 - * @return array|string + * @throws \think\Exception + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\ModelNotFoundException + * @throws \think\exception\DbException + * @throws \think\exception\PDOException */ public function edit() { @@ -112,6 +120,8 @@ class Auth extends Controller /** * 禁用系统权限 + * @throws \think\Exception + * @throws \think\exception\PDOException */ public function forbid() { @@ -121,6 +131,8 @@ class Auth extends Controller /** * 启用系统权限 + * @throws \think\Exception + * @throws \think\exception\PDOException */ public function resume() { @@ -130,6 +142,8 @@ class Auth extends Controller /** * 删除系统权限 + * @throws \think\Exception + * @throws \think\exception\PDOException */ public function remove() { diff --git a/application/admin/controller/Index.php b/application/admin/controller/Index.php index fdf8beb13..41775bb0c 100644 --- a/application/admin/controller/Index.php +++ b/application/admin/controller/Index.php @@ -154,6 +154,11 @@ class Index extends Controller /** * 修改用户资料 * @param integer $id 会员ID + * @throws \think\Exception + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\ModelNotFoundException + * @throws \think\exception\DbException + * @throws \think\exception\PDOException */ public function info($id = 0) { diff --git a/application/admin/controller/Menu.php b/application/admin/controller/Menu.php index 14ee3fa14..f1b139987 100644 --- a/application/admin/controller/Menu.php +++ b/application/admin/controller/Menu.php @@ -67,6 +67,11 @@ class Menu extends Controller /** * 编辑系统菜单 + * @throws \think\Exception + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\ModelNotFoundException + * @throws \think\exception\DbException + * @throws \think\exception\PDOException */ public function edit() { @@ -106,6 +111,8 @@ class Menu extends Controller /** * 启用系统菜单 + * @throws \think\Exception + * @throws \think\exception\PDOException */ public function resume() { @@ -115,6 +122,8 @@ class Menu extends Controller /** * 禁用系统菜单 + * @throws \think\Exception + * @throws \think\exception\PDOException */ public function forbid() { @@ -124,6 +133,8 @@ class Menu extends Controller /** * 删除系统菜单 + * @throws \think\Exception + * @throws \think\exception\PDOException */ public function remove() { diff --git a/application/admin/controller/Message.php b/application/admin/controller/Message.php index 6913ed5d8..cc04de60d 100644 --- a/application/admin/controller/Message.php +++ b/application/admin/controller/Message.php @@ -47,6 +47,8 @@ class Message extends Controller /** * 设置消息状态 + * @throws \think\Exception + * @throws \think\exception\PDOException */ public function read() { @@ -84,6 +86,8 @@ class Message extends Controller /** * 删除系统消息 + * @throws \think\Exception + * @throws \think\exception\PDOException */ public function remove() { diff --git a/application/admin/controller/Oplog.php b/application/admin/controller/Oplog.php index 8a9c25086..043491273 100644 --- a/application/admin/controller/Oplog.php +++ b/application/admin/controller/Oplog.php @@ -76,6 +76,8 @@ class Oplog extends Controller /** * 删除系统日志 + * @throws \think\Exception + * @throws \think\exception\PDOException */ public function remove() { diff --git a/application/admin/controller/User.php b/application/admin/controller/User.php index 8c526051e..27179986d 100644 --- a/application/admin/controller/User.php +++ b/application/admin/controller/User.php @@ -22,8 +22,6 @@ use think\Db; * 系统用户管理 * Class User * @package app\admin\controller - * @author Anyon - * @date 2017/02/15 18:12 */ class User extends Controller { @@ -51,7 +49,11 @@ class User extends Controller /** * 用户授权管理 - * @return mixed + * @throws \think\Exception + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\ModelNotFoundException + * @throws \think\exception\DbException + * @throws \think\exception\PDOException */ public function auth() { @@ -61,7 +63,11 @@ class User extends Controller /** * 添加系统用户 - * @return mixed + * @throws \think\Exception + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\ModelNotFoundException + * @throws \think\exception\DbException + * @throws \think\exception\PDOException */ public function add() { @@ -71,7 +77,11 @@ class User extends Controller /** * 编辑系统用户 - * @return mixed + * @throws \think\Exception + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\ModelNotFoundException + * @throws \think\exception\DbException + * @throws \think\exception\PDOException */ public function edit() { @@ -130,6 +140,8 @@ class User extends Controller /** * 禁用系统用户 + * @throws \think\Exception + * @throws \think\exception\PDOException */ public function forbid() { @@ -142,6 +154,8 @@ class User extends Controller /** * 启用系统用户 + * @throws \think\Exception + * @throws \think\exception\PDOException */ public function resume() { @@ -151,6 +165,8 @@ class User extends Controller /** * 删除系统用户 + * @throws \think\Exception + * @throws \think\exception\PDOException */ public function remove() {