Total Complexity | 1 |
Total Lines | 11 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
7 | final class Tokens |
||
8 | { |
||
9 | public const BOOLEAN = 'boolean'; |
||
10 | public const FLOAT = 'float'; |
||
11 | public const IDENTIFIER = 'identifier'; |
||
12 | public const INTEGER = 'integer'; |
||
13 | public const NAMESPACED_IDENTIFIER = 'identifier_ns'; |
||
14 | public const NULL = 'null'; |
||
15 | |||
16 | private function __construct() |
||
20 |