| Total Complexity | 1 | 
| Total Lines | 35 | 
| Duplicated Lines | 0 % | 
| Changes | 6 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 22 | class Mailcode_Commands_Keywords | ||
| 23 | { | ||
| 24 | public const TYPE_IN = 'in:'; | ||
| 25 | public const TYPE_INSENSITIVE = 'insensitive:'; | ||
| 26 | public const TYPE_REGEX = 'regex:'; | ||
| 27 | public const TYPE_URLENCODE = 'urlencode:'; | ||
| 28 | public const TYPE_URLDECODE = 'urldecode:'; | ||
| 29 | public const TYPE_MULTILINE = 'multiline:'; | ||
| 30 | public const TYPE_IDN_ENCODE = 'idnencode:'; | ||
| 31 | public const TYPE_IDN_DECODE = 'idndecode:'; | ||
| 32 | public const TYPE_NOHTML = 'nohtml:'; | ||
| 33 | public const TYPE_ABSOLUTE = 'absolute:'; | ||
| 34 | public const TYPE_NO_TRACKING = 'no-tracking:'; | ||
| 35 | public const TYPE_CURRENCY_NAME = 'currency-name:'; | ||
| 36 | public const TYPE_SHORTEN = 'shorten:'; | ||
| 37 | |||
| 38 | /** | ||
| 39 | * @return string[] | ||
| 40 | */ | ||
| 41 | public static function getAll(): array | ||
| 60 |