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\MangaGenreListCommand;
|
||
|
|
||
|
/**
|
||
|
* @implements GenreListHandler<MangaGenreListCommand>
|
||
|
*/
|
||
|
final class MangaGenreListHandler extends GenreListHandler
|
||
|
{
|
||
|
/**
|
||
|
* @inheritDoc
|
||
|
*/
|
||
|
public function requestClass(): string
|
||
|
{
|
||
|
return MangaGenreListCommand::class;
|
||
|
}
|
||
|
}
|