mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-23 11:58:41 +08:00
20 lines
263 B
PHP
20 lines
263 B
PHP
<?php
|
|
|
|
namespace App\Services\Frontend;
|
|
|
|
use App\Validators\User as UserValidator;
|
|
|
|
trait UserTrait
|
|
{
|
|
|
|
public function checkUser($id)
|
|
{
|
|
$validator = new UserValidator();
|
|
|
|
$user = $validator->checkUser($id);
|
|
|
|
return $user;
|
|
}
|
|
|
|
}
|