mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-26 20:52:44 +08:00
21 lines
332 B
PHP
21 lines
332 B
PHP
<?php
|
|
|
|
namespace App\Services\Frontend\Help;
|
|
|
|
use App\Caches\HelpList as HelpListCache;
|
|
use App\Services\Frontend\Service as FrontendService;
|
|
|
|
class HelpList extends FrontendService
|
|
{
|
|
|
|
public function handle()
|
|
{
|
|
$cache = new HelpListCache();
|
|
|
|
$result = $cache->get();
|
|
|
|
return $result ?: [];
|
|
}
|
|
|
|
}
|