1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-23 20:00:27 +08:00
2021-04-08 19:58:30 +08:00

18 lines
254 B
PHP

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