mirror of
https://github.com/jikan-me/jikan-rest.git
synced 2025-02-20 11:23:35 +08:00
22 lines
371 B
PHP
22 lines
371 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Enums;
|
||
|
|
||
|
use Spatie\Enum\Laravel\Enum;
|
||
|
|
||
|
/**
|
||
|
* @method static self public()
|
||
|
* @method static self private()
|
||
|
* @method static self secret()
|
||
|
*
|
||
|
* @OA\Schema(
|
||
|
* schema="club_search_query_type",
|
||
|
* description="Club Search Query Type",
|
||
|
* type="string",
|
||
|
* enum={"public","private","secret"}
|
||
|
* )
|
||
|
*/
|
||
|
final class ClubTypeEnum extends Enum
|
||
|
{
|
||
|
}
|