mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-27 23:06:15 +02:00
26 lines
482 B
PHP
26 lines
482 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Api\Field\Search;
|
|
|
|
use App\Http\Api\Field\Field;
|
|
use App\Http\Api\Schema\Schema;
|
|
use App\Http\Resources\Wiki\Collection\ArtistCollection;
|
|
|
|
/**
|
|
* Class SearchArtistField.
|
|
*/
|
|
class SearchArtistField extends Field
|
|
{
|
|
/**
|
|
* Create a new field instance.
|
|
*
|
|
* @param Schema $schema
|
|
*/
|
|
public function __construct(Schema $schema)
|
|
{
|
|
parent::__construct($schema, ArtistCollection::$wrap);
|
|
}
|
|
}
|