mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-08 21:53:19 +02:00
* refactor(api): prefer composition to strict inheritance for API queries, requests & actions * style: fix StyleCI findigns
13 lines
145 B
PHP
13 lines
145 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Contracts\Http\Api\Schema;
|
|
|
|
/**
|
|
* Interface SearchableSchema.
|
|
*/
|
|
interface SearchableSchema
|
|
{
|
|
}
|