mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-07 13:13:09 +02:00
54 lines
1.5 KiB
PHP
54 lines
1.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Api\Schema\User;
|
|
|
|
use App\Http\Api\Field\Base\CreatedAtField;
|
|
use App\Http\Api\Field\Base\UpdatedAtField;
|
|
use App\Http\Api\Field\Base\UuidField;
|
|
use App\Http\Api\Field\Field;
|
|
use App\Http\Api\Field\User\Notification\NotificationDataField;
|
|
use App\Http\Api\Field\User\Notification\NotificationNotifiableIdField;
|
|
use App\Http\Api\Field\User\Notification\NotificationNotifiableTypeField;
|
|
use App\Http\Api\Field\User\Notification\NotificationReadAtField;
|
|
use App\Http\Api\Field\User\Notification\NotificationTypeField;
|
|
use App\Http\Api\Include\AllowedInclude;
|
|
use App\Http\Api\Schema\EloquentSchema;
|
|
use App\Http\Resources\User\Resource\NotificationJsonResource;
|
|
|
|
class NotificationSchema extends EloquentSchema
|
|
{
|
|
public function type(): string
|
|
{
|
|
return NotificationJsonResource::$wrap;
|
|
}
|
|
|
|
/**
|
|
* @return AllowedInclude[]
|
|
*/
|
|
public function allowedIncludes(): array
|
|
{
|
|
return $this->withIntermediatePaths([]);
|
|
}
|
|
|
|
/**
|
|
* @return Field[]
|
|
*
|
|
* @noinspection PhpMissingParentCallCommonInspection
|
|
*/
|
|
public function fields(): array
|
|
{
|
|
return [
|
|
new CreatedAtField($this),
|
|
new UpdatedAtField($this),
|
|
new UuidField($this, 'id'),
|
|
new NotificationTypeField($this),
|
|
new NotificationNotifiableTypeField($this),
|
|
new NotificationNotifiableIdField($this),
|
|
new NotificationDataField($this),
|
|
new NotificationReadAtField($this),
|
|
];
|
|
}
|
|
}
|