WP-Database-Helper/enums/Order.php

17 lines
240 B
PHP
Raw Normal View History

2025-02-12 14:03:39 +00:00
<?php
namespace DatabaseHelper\enums;
enum Order
{
case ASC;
case DESC;
public function toString(): string {
return match ($this) {
self::ASC => 'ASC',
self::DESC => 'DESC',
};
}
}