mirror of
https://github.com/jikan-me/jikan-rest.git
synced 2025-02-20 11:23:35 +08:00
21 lines
357 B
PHP
21 lines
357 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Enums;
|
||
|
|
||
|
|
||
|
use Spatie\Enum\Laravel\Enum;
|
||
|
|
||
|
/**
|
||
|
* @method static self anime()
|
||
|
* @method static self manga()
|
||
|
* @OA\Schema(
|
||
|
* schema="top_reviews_type_enum",
|
||
|
* description="The type of reviews to filter by. Defaults to anime.",
|
||
|
* type="string",
|
||
|
* enum={"anime","manga"}
|
||
|
* )
|
||
|
*/
|
||
|
final class TopReviewsTypeEnum extends Enum
|
||
|
{
|
||
|
}
|