mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 19:44:02 +08:00
22 lines
382 B
PHP
22 lines
382 B
PHP
<?php
|
|
|
|
namespace App\Services\Frontend\Course;
|
|
|
|
use App\Services\Frontend\CourseTrait;
|
|
use App\Services\Frontend\Service as FrontendService;
|
|
|
|
class CourseBasicInfo extends FrontendService
|
|
{
|
|
|
|
use CourseTrait;
|
|
use CourseBasicInfoTrait;
|
|
|
|
public function handle($id)
|
|
{
|
|
$course = $this->checkCourse($id);
|
|
|
|
return $this->handleBasicInfo($course);
|
|
}
|
|
|
|
}
|