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

19 lines
286 B
PHP

<?php
namespace App\Services\Logic\Help;
use App\Caches\HelpList as HelpListCache;
use App\Services\Logic\Service as LogicService;
class HelpList extends LogicService
{
public function handle()
{
$cache = new HelpListCache();
return $cache->get();
}
}