mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-28 13:21:37 +08:00
16 lines
294 B
PHP
16 lines
294 B
PHP
<?php
|
|
|
|
namespace App\Services\Frontend\Search;
|
|
|
|
use App\Services\Frontend\Service as FrontendService;
|
|
|
|
abstract class Handler extends FrontendService
|
|
{
|
|
|
|
abstract function search();
|
|
|
|
abstract function getHotQuery($limit, $type);
|
|
|
|
abstract function getRelatedQuery($query, $limit);
|
|
|
|
} |