jikan-rest/app/Enums/ClubTypeEnum.php
pushrbx a145f18bbd wip - major refactor
- AppServiceProvider is needs more work to wire in new services
- todo: more dtos
- todo: add unit tests
- todo: add more integration tests
2023-05-21 11:14:34 +01:00

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
{
}