mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 03:32:47 +08:00
32 lines
527 B
PHP
32 lines
527 B
PHP
<?php
|
|
|
|
namespace App\Caches;
|
|
|
|
use App\Builders\CourseChapterList as CourseChapterListBuilder;
|
|
|
|
class CourseChapterList extends Cache
|
|
{
|
|
|
|
protected $lifetime = 7 * 86400;
|
|
|
|
public function getLifetime()
|
|
{
|
|
return $this->lifetime;
|
|
}
|
|
|
|
public function getKey($id = null)
|
|
{
|
|
return "course_chapter_list:{$id}";
|
|
}
|
|
|
|
public function getContent($id = null)
|
|
{
|
|
$builder = new CourseChapterListBuilder();
|
|
|
|
$list = $builder->handle($id);
|
|
|
|
return $list ?: [];
|
|
}
|
|
|
|
}
|