mirror of
https://codeberg.org/vlw/php-mysql.git
synced 2025-09-14 08:43:40 +02:00
8 lines
No EOL
97 B
PHP
8 lines
No EOL
97 B
PHP
<?php
|
|
|
|
namespace vlw\MySQL;
|
|
|
|
enum Order: string {
|
|
case ASC = "ASC";
|
|
case DESC = "DESC";
|
|
} |