mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-26 12:23:06 +08:00
20 lines
279 B
PHP
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;
|
|
}
|
|
|
|
}
|