Files
Mangarr/src/Domain/Manga/Infrastructure/ApiPlatform/Resource/MangaResource.php
ext.jeremy.guillot@maxicoffee.domains 2f615a4936 feat: GetManga endpoint + tests
2025-02-10 19:40:47 +01:00

22 lines
541 B
PHP

<?php
namespace App\Domain\Manga\Infrastructure\ApiPlatform\Resource;
use ApiPlatform\Metadata\ApiResource;
use ApiPlatform\Metadata\Get;
use App\Domain\Manga\Infrastructure\ApiPlatform\Dto\MangaDetail;
use App\Domain\Manga\Infrastructure\ApiPlatform\State\Provider\GetMangaStateProvider;
#[ApiResource(
shortName: 'Manga',
operations: [
new Get(
uriTemplate: '/mangas/{id}',
provider: GetMangaStateProvider::class,
output: MangaDetail::class
)
]
)]
class MangaResource
{
}