jikan-rest/app/Contracts/DataRequest.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

16 lines
320 B
PHP

<?php
namespace App\Contracts;
use Illuminate\Http\Resources\Json\JsonResource;
use Illuminate\Http\Resources\Json\ResourceCollection;
use Illuminate\Http\Response;
/**
* Marker interface to represent a request with a response
* @template T of ResourceCollection|JsonResource|Response
*/
interface DataRequest
{
}