Framework/src/Http/JsonApi/SchemaProviderInterface.php

14 lines
375 B
PHP
Raw Normal View History

2026-01-06 17:02:05 +00:00
<?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;
}