mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-04 19:55:05 +02:00
28 lines
514 B
PHP
28 lines
514 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Resources\Auth\User\Resource;
|
|
|
|
use App\Http\Api\Schema\Auth\User\MySchema;
|
|
use App\Http\Api\Schema\Schema;
|
|
use App\Http\Resources\BaseJsonResource;
|
|
|
|
class MyJsonResource extends BaseJsonResource
|
|
{
|
|
/**
|
|
* The "data" wrapper that should be applied.
|
|
*
|
|
* @var string|null
|
|
*/
|
|
public static $wrap = 'user';
|
|
|
|
/**
|
|
* Get the resource schema.
|
|
*/
|
|
protected function schema(): Schema
|
|
{
|
|
return new MySchema();
|
|
}
|
|
}
|