mirror of
https://github.com/jikan-me/jikan-rest.git
synced 2025-02-20 11:23:35 +08:00
16 lines
304 B
PHP
16 lines
304 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Dto;
|
||
|
|
||
|
use App\Concerns\HasRequestFingerprint;
|
||
|
use App\Contracts\DataRequest;
|
||
|
use Illuminate\Http\JsonResponse;
|
||
|
|
||
|
/**
|
||
|
* @implements DataRequest<JsonResponse>
|
||
|
*/
|
||
|
final class QueryTopReviewsCommand extends QueryTopItemsCommand implements DataRequest
|
||
|
{
|
||
|
use HasRequestFingerprint;
|
||
|
}
|