jikan-rest/app/Features/AnimeGenreListHandler.php
pushrbx a145f18bbd wip - major refactor
- AppServiceProvider is needs more work to wire in new services
- todo: more dtos
- todo: add unit tests
- todo: add more integration tests
2023-05-21 11:14:34 +01:00

20 lines
329 B
PHP

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