清理技术债务

This commit is contained in:
2023-10-08 14:03:44 +08:00
parent 26a93bd789
commit 2653cd69e7

View File

@@ -15,27 +15,7 @@ use think\validate\ValidateRule;
class PostComment extends Common class PostComment extends Common
{ {
/** /**
* 显示资源列表 * 保存新建的资源.
*
* @return \think\Response
*/
public function index()
{
//
}
/**
* 显示创建资源表单页.
*
* @return \think\Response
*/
public function create()
{
//
}
/**
* 保存新建的资源
* *
* @param \think\Request $request * @param \think\Request $request
* @return \think\Response * @return \think\Response
@@ -75,48 +55,11 @@ class PostComment extends Common
Cache::delete('post_' . $model_post->uid); Cache::delete('post_' . $model_post->uid);
return json_message(); return json_message();
} }
/** /**
* 显示指定资源 * 删除指定资源.
*
* @param int $id
* @return \think\Response
*/
public function read($id)
{
//
}
/**
* 显示编辑资源表单页.
*
* @param int $id
* @return \think\Response
*/
public function edit($id)
{
//
}
/**
* 保存更新的资源
*
* @param \think\Request $request
* @param int $id
* @return \think\Response
*/
public function update(Request $request, $id)
{
//
}
/**
* 删除指定资源
* *
* @param int $id * @param int $id
* @return \think\Response * @return \think\Response