Fix use of GenderCache in ApiPageSet::processTitlesArray
[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 and correspond to the names of the list types
8 * in the Message class.
9 */
10 class ListType {
11 /** A comma-separated list */
12 const COMMA = 'comma';
13
14 /** A semicolon-separated list */
15 const SEMICOLON = 'semicolon';
16
17 /** A pipe-separated list */
18 const PIPE = 'pipe';
19
20 /** A natural-language list separated by "and" */
21 const AND = 'text';
22 }