1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-23 20:00:27 +08:00
2020-08-22 19:47:57 +08:00

22 lines
370 B
PHP

<?php
namespace App\Services\Frontend\Course;
use App\Services\Frontend\CourseTrait;
use App\Services\Frontend\Service as FrontendService;
class BasicInfo extends FrontendService
{
use CourseTrait;
use BasicInfoTrait;
public function handle($id)
{
$course = $this->checkCourse($id);
return $this->handleBasicInfo($course);
}
}