mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-05 20:25:05 +02:00
18 lines
361 B
PHP
18 lines
361 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Api\Field\User\Notification;
|
|
|
|
use App\Http\Api\Field\JsonField;
|
|
use App\Http\Api\Schema\Schema;
|
|
use App\Models\User\Notification;
|
|
|
|
class NotificationDataField extends JsonField
|
|
{
|
|
public function __construct(Schema $schema)
|
|
{
|
|
parent::__construct($schema, Notification::ATTRIBUTE_DATA);
|
|
}
|
|
}
|