1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-26 12:23:06 +08:00
2020-07-24 20:27:14 +08:00

21 lines
388 B
PHP

<?php
namespace App\Services\Frontend\My;
use App\Services\Frontend\Service as FrontendService;
use App\Services\Frontend\User\CourseList as UserCourseListService;
class CourseList extends FrontendService
{
public function handle()
{
$user = $this->getLoginUser();
$service = new UserCourseListService();
return $service->handle($user->id);
}
}