mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-04 11:45:00 +02:00
* refactor: migration from laravel-enum package to native php enums * style: fix StyleCI findings
15 lines
181 B
PHP
15 lines
181 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Enums\Http\Api\Sort;
|
|
|
|
/**
|
|
* Enum Direction.
|
|
*/
|
|
enum Direction: string
|
|
{
|
|
case ASCENDING = 'asc';
|
|
case DESCENDING = 'desc';
|
|
}
|