Files
animethemes-server/app/GraphQL/Schema/Fields/Admin/Feature/FeatureNameField.php
T

22 lines
422 B
PHP

<?php
declare(strict_types=1);
namespace App\GraphQL\Schema\Fields\Admin\Feature;
use App\GraphQL\Schema\Fields\StringField;
use App\Models\Admin\Feature;
class FeatureNameField extends StringField
{
public function __construct()
{
parent::__construct(Feature::ATTRIBUTE_NAME, nullable: false);
}
public function description(): string
{
return 'The title of the resource';
}
}