Files
animethemes-server/app/GraphQL/Schema/Fields/Wiki/Video/VideoScript/VideoScriptPathField.php
T
2025-09-03 04:57:13 -03:00

22 lines
454 B
PHP

<?php
declare(strict_types=1);
namespace App\GraphQL\Schema\Fields\Wiki\Video\VideoScript;
use App\GraphQL\Schema\Fields\StringField;
use App\Models\Wiki\Video\VideoScript;
class VideoScriptPathField extends StringField
{
public function __construct()
{
parent::__construct(VideoScript::ATTRIBUTE_PATH, nullable: false);
}
public function description(): string
{
return 'The path of the file in storage';
}
}