1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-27 13:00:23 +08:00
2021-03-30 11:05:07 +08:00

21 lines
320 B
PHP

<?php
namespace App\Services\Logic\Point;
use App\Caches\PointHotGiftList;
use App\Services\Logic\Service as LogicService;
class HotGiftList extends LogicService
{
public function handle()
{
$cache = new PointHotGiftList();
$cache->setLimit(5);
return $cache->get() ?: [];
}
}