mirror of
https://github.com/jikan-me/jikan-rest.git
synced 2025-02-20 11:23:35 +08:00
9 lines
156 B
PHP
9 lines
156 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Services;
|
||
|
|
||
|
interface SearchQueryBuilderProvider
|
||
|
{
|
||
|
function getSearchQueryBuilder(EndpointType $recordType): QueryBuilderService;
|
||
|
}
|