14 lines
375 B
PHP
14 lines
375 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Phred\Http\JsonApi;
|
|
|
|
interface SchemaProviderInterface
|
|
{
|
|
public function getResourceType(): string;
|
|
public function getId(mixed $resource): string;
|
|
public function getAttributes(mixed $resource): array;
|
|
public function getRelationships(mixed $resource): array;
|
|
public function getLinks(mixed $resource): array;
|
|
}
|