mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-04 03:35:02 +02:00
* refactor(api): prefer composition to strict inheritance for API queries, requests & actions * style: fix StyleCI findigns
21 lines
285 B
PHP
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;
|
|
}
|