mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-16 18:04:34 -05:00
10 lines
132 B
PHP
10 lines
132 B
PHP
<?php
|
|
|
|
namespace Gazelle\Enum;
|
|
|
|
enum UserMatchSort: int {
|
|
case score = 0;
|
|
case firstDate = 1;
|
|
case lastDate = 2;
|
|
}
|