ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Token.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace ILIAS\MetaData\Paths;
22
27enum Token: string
28{
29 case START_AT_ROOT = '@';
30 case START_AT_CURRENT = '=';
31 case LEADS_TO_EXACTLY_ONE = '#';
32 case SEPARATOR = ';';
33 case FILTER_SEPARATOR = '$';
34 case FILTER_VALUE_SEPARATOR = ':';
Token
The string representation of these tokens must not occur in the names of metadata elements.
Definition: Token.php:28