mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 09:34:50 +02:00
13 lines
179 B
PHP
13 lines
179 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Contracts\GraphQL;
|
|
|
|
use App\GraphQL\Sort\SortCriteria;
|
|
|
|
interface EnumSort
|
|
{
|
|
public function getSortCriteria(): SortCriteria;
|
|
}
|