1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-22 19:44:02 +08:00
2020-09-17 21:29:29 +08:00

16 lines
261 B
PHP

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