mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-07-16 13:16:14 +08:00
19 lines
301 B
PHP
19 lines
301 B
PHP
<?php
|
|
|
|
namespace App\Services\Logic\Teacher;
|
|
|
|
use App\Services\Logic\Service;
|
|
use App\Services\Logic\User\UserInfo as UserInfoService;
|
|
|
|
class TeacherInfo extends Service
|
|
{
|
|
|
|
public function handle($id)
|
|
{
|
|
$service = new UserInfoService();
|
|
|
|
return $service->handle($id);
|
|
}
|
|
|
|
}
|