diff --git a/app/index/controller/PostComment.php b/app/index/controller/PostComment.php index fb46f6c..cd519c0 100644 --- a/app/index/controller/PostComment.php +++ b/app/index/controller/PostComment.php @@ -15,27 +15,7 @@ use think\validate\ValidateRule; class PostComment extends Common { /** - * 显示资源列表 - * - * @return \think\Response - */ - public function index() - { - // - } - - /** - * 显示创建资源表单页. - * - * @return \think\Response - */ - public function create() - { - // - } - - /** - * 保存新建的资源 + * 保存新建的资源. * * @param \think\Request $request * @return \think\Response @@ -75,48 +55,11 @@ class PostComment extends Common Cache::delete('post_' . $model_post->uid); - - - 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 * @return \think\Response