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
320 B
PHP
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
|
|
{
|
|
}
|