Files
animethemes-server/app/GraphQL/Schema/Fields/Wiki/Video/VideoNcField.php
T
2025-10-01 17:18:31 -03:00

48 lines
1005 B
PHP

<?php
declare(strict_types=1);
namespace App\GraphQL\Schema\Fields\Wiki\Video;
use App\Contracts\GraphQL\Fields\CreatableField;
use App\Contracts\GraphQL\Fields\UpdatableField;
use App\GraphQL\Schema\Fields\BooleanField;
use App\Models\Wiki\Video;
class VideoNcField extends BooleanField implements CreatableField, UpdatableField
{
public function __construct()
{
parent::__construct(Video::ATTRIBUTE_NC, nullable: false);
}
public function description(): string
{
return 'Is the video creditless?';
}
/**
* @param array<string, mixed> $args
*/
public function getCreationRules(array $args): array
{
return [
'sometimes',
'required',
'boolean',
];
}
/**
* @param array<string, mixed> $args
*/
public function getUpdateRules(array $args): array
{
return [
'sometimes',
'required',
'boolean',
];
}
}