Files
animethemes-server/app/Contracts/Http/Api/InteractsWithSchema.php
T
paranarimasu 27778857b1 Request action composition (#516)
* refactor(api): prefer composition to strict inheritance for API queries, requests & actions

* style: fix StyleCI findigns
2023-02-16 23:30:57 -06:00

21 lines
285 B
PHP

<?php
declare(strict_types=1);
namespace App\Contracts\Http\Api;
use App\Http\Api\Schema\Schema;
/**
* Class InteractsWithSchema.
*/
interface InteractsWithSchema
{
/**
* The name of the disk.
*
* @return Schema
*/
public function schema(): Schema;
}