mirror of
https://github.com/jikan-me/jikan-rest.git
synced 2025-02-20 11:23:35 +08:00
- anime schedules - validation and corrections - refactorings around "augmentResponse" - macro usage instead
15 lines
267 B
PHP
15 lines
267 B
PHP
<?php
|
|
|
|
namespace App\Dto;
|
|
|
|
use App\Contracts\DataRequest;
|
|
use App\Http\Resources\V4\CharacterResource;
|
|
use Spatie\LaravelData\Data;
|
|
|
|
/**
|
|
* @implements DataRequest<CharacterResource>
|
|
*/
|
|
final class QueryRandomCharacterCommand extends Data implements DataRequest
|
|
{
|
|
}
|