File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 6
6
7
7
/**
8
8
* @see https://datatracker.ietf.org/doc/html/rfc20
9
+ *
10
+ * @todo upgrade to PHP 8.2 and move values to cases
9
11
*/
10
12
enum Ascii: string
11
13
{
@@ -15,10 +17,22 @@ enum Ascii: string
15
17
public const RECORD_SEPARATOR = "\x1E" ;
16
18
public const UNIT_SEPARATOR = "\x1F" ;
17
19
20
+ /**
21
+ * Separates different files (databases)
22
+ */
18
23
case FileSeparator = self ::FILE_SEPARATOR ;
24
+ /**
25
+ * Separates different groups (tables) of the same file (database)
26
+ */
19
27
case GroupSeparator = self ::GROUP_SEPARATOR ;
20
28
case Null = self ::NULL ;
29
+ /**
30
+ * Separates different records (rows) of the same group (table)
31
+ */
21
32
case RecordSeparator = self ::RECORD_SEPARATOR ;
33
+ /**
34
+ * Separates different units (columns) of the same record (row)
35
+ */
22
36
case UnitSeparator = self ::UNIT_SEPARATOR ;
23
37
24
38
/**
You can’t perform that action at this time.
0 commit comments