Merge "Provide command to adjust phpunit.xml for code coverage"
[lhc/web/wiklou.git] / includes / libs / Message / ListType.php
1 <?php
2
3 namespace Wikimedia\Message;
4
5 /**
6 * The constants used to specify list types. The values of the constants are an
7 * unstable implementation detail.
8 */
9 class ListType {
10 /** A comma-separated list */
11 const COMMA = 'comma';
12
13 /** A semicolon-separated list */
14 const SEMICOLON = 'semicolon';
15
16 /** A pipe-separated list */
17 const PIPE = 'pipe';
18
19 /** A natural-language list separated by "and" */
20 const AND = 'text';
21 }