12 lines
134 B
PHP
12 lines
134 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace App\UI\DTO;
|
||
|
|
||
|
enum OrderDirection: string
|
||
|
{
|
||
|
case ASC = "ASC";
|
||
|
case DESC = "DESC";
|
||
|
}
|