1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-26 12:23:06 +08:00
2020-03-16 15:33:36 +08:00

20 lines
279 B
PHP

<?php
namespace App\Services\Frontend;
use App\Validators\Review as ReviewValidator;
trait ReviewTrait
{
public function checkReview($id)
{
$validator = new ReviewValidator();
$review = $validator->checkReview($id);
return $review;
}
}