MediaWiki  master
ListType.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Wikimedia\Message;
4 
9 class ListType {
11  public const COMMA = 'comma';
12 
14  public const SEMICOLON = 'semicolon';
15 
17  public const PIPE = 'pipe';
18 
20  public const AND = 'text';
21 }
The constants used to specify list types.
Definition: ListType.php:9
const COMMA
A comma-separated list.
Definition: ListType.php:11
const PIPE
A pipe-separated list.
Definition: ListType.php:17
const AND
A natural-language list separated by "and".
Definition: ListType.php:20
const SEMICOLON
A semicolon-separated list.
Definition: ListType.php:14