mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-23 20:00:27 +08:00
19 lines
286 B
PHP
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();
|
|
}
|
|
|
|
}
|