mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
16 lines
253 B
PHP
16 lines
253 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Contracts\GraphQL\Fields;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
interface BindableField
|
|
{
|
|
/**
|
|
* The resolver to cast the model.
|
|
*/
|
|
public function bindResolver(array $args): ?Model;
|
|
}
|