1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-07-19 22:52:59 +08:00
2021-03-30 11:05:07 +08:00

19 lines
322 B
PHP

<?php
namespace App\Services\Logic\Teacher;
use App\Services\Logic\Service as LogicService;
use App\Services\Logic\User\UserInfo as UserInfoService;
class TeacherInfo extends LogicService
{
public function handle($id)
{
$service = new UserInfoService();
return $service->handle($id);
}
}