mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 11:41:27 +08:00
18 lines
254 B
PHP
18 lines
254 B
PHP
<?php
|
|
|
|
namespace App\Services\Logic;
|
|
|
|
use App\Validators\Consult as ConsultValidator;
|
|
|
|
trait ConsultTrait
|
|
{
|
|
|
|
public function checkConsult($id)
|
|
{
|
|
$validator = new ConsultValidator();
|
|
|
|
return $validator->checkConsult($id);
|
|
}
|
|
|
|
}
|