mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-23 03:50:56 +08:00
18 lines
257 B
PHP
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);
|
|
}
|
|
|
|
}
|