Files
animethemes-server/app/GraphQL/Definition/Fields/User/Notification/NotificationData/NotificationDataImageField.php
T
2025-07-24 01:22:29 -03:00

24 lines
472 B
PHP

<?php
declare(strict_types=1);
namespace App\GraphQL\Definition\Fields\User\Notification\NotificationData;
use App\GraphQL\Definition\Fields\StringField;
class NotificationDataImageField extends StringField
{
public function __construct()
{
parent::__construct('image');
}
/**
* The description of the field.
*/
public function description(): string
{
return 'The image URL to display with the notification';
}
}