mirror of
https://github.com/jikan-me/jikan-rest.git
synced 2025-02-20 11:23:35 +08:00
20 lines
329 B
PHP
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;
|
||
|
}
|
||
|
}
|