1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-26 12:23:06 +08:00
2021-05-07 19:34:31 +08:00

21 lines
352 B
PHP

<?php
namespace App\Services\Logic\Question;
use App\Caches\TopAnswererList as TopAnswererListCache;
use App\Services\Logic\Service as LogicService;
class TopAnswererList extends LogicService
{
public function handle()
{
$cache = new TopAnswererListCache();
$result = $cache->get();
return $result ?: [];
}
}