mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 19:44:02 +08:00
19 lines
265 B
PHP
19 lines
265 B
PHP
<?php
|
|
|
|
namespace App\Services\Logic\Help;
|
|
|
|
use App\Caches\HelpList as HelpListCache;
|
|
use App\Services\Logic\Service;
|
|
|
|
class HelpList extends Service
|
|
{
|
|
|
|
public function handle()
|
|
{
|
|
$cache = new HelpListCache();
|
|
|
|
return $cache->get();
|
|
}
|
|
|
|
}
|