mirror of
https://github.com/parsecsv/parsecsv-for-php.git
synced 2026-02-19 08:36:39 +00:00
added enum for sort
This commit is contained in:
18
src/enums/SortEnum.php
Normal file
18
src/enums/SortEnum.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
/**
|
||||
* Created by PhpStorm.
|
||||
* User: sgorzaly
|
||||
* Date: 22.02.18
|
||||
* Time: 20:24
|
||||
*/
|
||||
|
||||
namespace ParseCsv\enums;
|
||||
|
||||
|
||||
class SortEnum {
|
||||
const SORT_TYPE_REGULAR = SORT_REGULAR;
|
||||
|
||||
const SORT_TYPE_NUMERIC = SORT_NUMERIC;
|
||||
|
||||
const SORT_TYPE_STRING = SORT_STRING;
|
||||
}
|
||||
Reference in New Issue
Block a user