Files
animethemes-server/app/Contracts/Http/Api/InteractsWithSchema.php
T

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;
}