jikan-rest/app/Dto/QueryTopPeopleCommand.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

14 lines
246 B
PHP

<?php
namespace App\Dto;
use App\Contracts\DataRequest;
use App\Http\Resources\V4\PersonCollection;
/**
* @implements DataRequest<PersonCollection>
*/
final class QueryTopPeopleCommand extends QueryTopItemsCommand implements DataRequest
{
}