Total Complexity | 1 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
10 | final class Nodes |
||
11 | { |
||
12 | public const ARRAY = '#array'; |
||
13 | public const BOOLEAN = '#boolean'; |
||
14 | public const CALLABLE = '#callable'; |
||
15 | public const FLOAT = '#float'; |
||
16 | public const GENERIC = '#generic'; |
||
17 | public const INTEGER = '#integer'; |
||
18 | public const ITERABLE = '#iterable'; |
||
19 | public const LIST = '#list'; |
||
20 | public const NULL = '#null'; |
||
21 | public const OBJECT = '#object'; |
||
22 | public const STRING = '#string'; |
||
23 | public const UNION = '#union'; |
||
24 | public const INTERSECTION = '#intersection'; |
||
25 | |||
26 | private function __construct() |
||
30 |