mirror of
https://codeberg.org/vlw/php-mysql.git
synced 2025-09-14 00:33:41 +02:00
feat: add ORDER BY statements enum
This commit is contained in:
parent
64c7bae3cf
commit
043c3cee01
1 changed files with 8 additions and 0 deletions
8
src/Order.php
Normal file
8
src/Order.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
namespace vlw\MySQL;
|
||||
|
||||
enum Order: string {
|
||||
case ASC = "ASC";
|
||||
case DESC = "DESC";
|
||||
}
|
Loading…
Add table
Reference in a new issue