1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-07-15 04:46:06 +08:00
course-tencent-cloud/app/Caches/HotTeacherList.php
2020-01-30 16:51:10 +08:00

31 lines
392 B
PHP

<?php
namespace App\Caches;
class HotTeacherList extends Cache
{
protected $lifetime = 365 * 86400;
public function getLifetime()
{
return $this->lifetime;
}
public function getKey($id = null)
{
return 'hot_teacher_list';
}
public function getContent($id = null)
{
}
protected function handleContent($users)
{
}
}