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

16 lines
282 B
PHP

<?php
namespace App\Services\Logic\Search;
use App\Services\Logic\Service as LogicService;
abstract class Handler extends LogicService
{
abstract function search();
abstract function getHotQuery($limit, $type);
abstract function getRelatedQuery($query, $limit);
}