mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
15 lines
238 B
PHP
15 lines
238 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Contracts\GraphQL;
|
|
|
|
use App\GraphQL\Criteria\Sort\SortCriteria;
|
|
|
|
interface EnumSort
|
|
{
|
|
public function getSortCriteria(): SortCriteria;
|
|
|
|
public function shouldQualifyColumn(): bool;
|
|
}
|