mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 03:32:47 +08:00
32 lines
457 B
PHP
32 lines
457 B
PHP
<?php
|
|
|
|
namespace App\Caches;
|
|
|
|
use App\Repos\Help as HelpRepo;
|
|
|
|
class Help extends Cache
|
|
{
|
|
|
|
protected $lifetime = 7 * 86400;
|
|
|
|
public function getLifetime()
|
|
{
|
|
return $this->lifetime;
|
|
}
|
|
|
|
public function getKey($id = null)
|
|
{
|
|
return "help:{$id}";
|
|
}
|
|
|
|
public function getContent($id = null)
|
|
{
|
|
$helpRepo = new HelpRepo();
|
|
|
|
$help = $helpRepo->findById($id);
|
|
|
|
return $help ?: null;
|
|
}
|
|
|
|
}
|