1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-23 03:50:56 +08:00
xiaochong0302 cf5e50f402 增加第三方登录设计
整理代码
2020-04-16 19:29:09 +08:00

18 lines
257 B
PHP

<?php
namespace App\Services\Frontend;
use App\Validators\Comment as CommentValidator;
trait CommentTrait
{
public function checkComment($id)
{
$validator = new CommentValidator();
return $validator->checkComment($id);
}
}