jikan-rest/app/Features/MangaGenreListHandler.php

20 lines
329 B
PHP
Raw Permalink Normal View History

<?php
namespace App\Features;
use App\Dto\MangaGenreListCommand;
/**
* @implements GenreListHandler<MangaGenreListCommand>
*/
final class MangaGenreListHandler extends GenreListHandler
{
/**
* @inheritDoc
*/
public function requestClass(): string
{
return MangaGenreListCommand::class;
}
}