ILIAS  trunk Revision v11.0_alpha-1723-g8e69f309bab
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Token.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\MetaData\Paths;
22 
27 enum 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 = '$';
35 }
Token
The string representation of these tokens must not occur in the names of metadata elements...
Definition: Token.php:27