修改文件注释

This commit is contained in:
Anyon 2019-11-13 14:27:17 +08:00
parent 3fd2f992a2
commit 611a1f9749
2 changed files with 15 additions and 15 deletions

View File

@ -73,7 +73,7 @@ class Auth extends Controller
}
/**
* 修改系统权限状态
* 修改权限状态
* @auth true
* @throws \think\db\exception\DbException
*/
@ -83,17 +83,6 @@ class Auth extends Controller
$this->_save($this->table, ['status' => input('status')]);
}
/**
* 删除系统权限
* @auth true
* @throws \think\db\exception\DbException
*/
public function remove()
{
$this->_applyFormToken();
$this->_delete($this->table);
}
/**
* 权限配置节点
* @auth true
@ -124,6 +113,17 @@ class Auth extends Controller
$this->_form($this->table, 'apply');
}
}
/**
* 删除系统权限
* @auth true
* @throws \think\db\exception\DbException
*/
public function remove()
{
$this->_applyFormToken();
$this->_delete($this->table);
}
/**
* 删除结果处理

View File

@ -42,7 +42,7 @@ class Config extends Controller
}
/**
* 修改系统数配置
* 修改系统数配置
* @auth true
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
@ -52,7 +52,7 @@ class Config extends Controller
{
$this->_applyFormToken();
if ($this->request->isGet()) {
$this->title = '系统参数配置';
$this->title = '修改系统参数配置';
$this->fetch();
}
foreach ($this->request->post() as $key => $value) {
@ -62,7 +62,7 @@ class Config extends Controller
}
/**
* 文件存储引擎
* 修改文件存储引擎
* @auth true
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException