added enum for sort

This commit is contained in:
Susann Sgorzaly
2018-02-22 20:41:03 +01:00
parent ef44ea3989
commit 657cec4b4e
2 changed files with 21 additions and 9 deletions

18
src/enums/SortEnum.php Normal file
View 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;
}