1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-26 12:23:06 +08:00
2020-09-17 21:29:29 +08:00

21 lines
362 B
PHP

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