php-mysql/src/Order.php

8 lines
No EOL
97 B
PHP

<?php
namespace vlw\MySQL;
enum Order: string {
case ASC = "ASC";
case DESC = "DESC";
}