mirror of
https://github.com/jikan-me/jikan-rest.git
synced 2025-02-20 11:23:35 +08:00
- AppServiceProvider is needs more work to wire in new services - todo: more dtos - todo: add unit tests - todo: add more integration tests
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;
|
|
}
|