1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-27 21:10:24 +08:00
2021-02-04 15:39:53 +08:00

21 lines
299 B
PHP

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