mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
28 lines
522 B
PHP
28 lines
522 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Resources\Wiki\Resource;
|
|
|
|
use App\Http\Api\Schema\Schema;
|
|
use App\Http\Api\Schema\Wiki\SynonymSchema;
|
|
use App\Http\Resources\BaseJsonResource;
|
|
|
|
class SynonymJsonResource extends BaseJsonResource
|
|
{
|
|
/**
|
|
* The "data" wrapper that should be applied.
|
|
*
|
|
* @var string|null
|
|
*/
|
|
public static $wrap = 'synonym';
|
|
|
|
/**
|
|
* Get the resource schema.
|
|
*/
|
|
protected function schema(): Schema
|
|
{
|
|
return new SynonymSchema();
|
|
}
|
|
}
|