jikan-rest/app/Enums/MagazineOrderByEnum.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
378 B
PHP

<?php
namespace App\Enums;
use Spatie\Enum\Laravel\Enum;
/**
* @method static self mal_id()
* @method static self name()
* @method static self count()
*
* @OA\Schema(
* schema="magazines_query_orderby",
* description="Order by magazine data",
* type="string",
* enum={"mal_id", "name", "count"}
* )
*/
final class MagazineOrderByEnum extends Enum
{
}