mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-20 11:27:31 +02:00
13 lines
173 B
PHP
13 lines
173 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Contracts\Http\Api;
|
|
|
|
use App\Http\Api\Schema\Schema;
|
|
|
|
interface InteractsWithSchema
|
|
{
|
|
public function schema(): Schema;
|
|
}
|