Total Complexity | 1 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
7 | final class Nodes |
||
8 | { |
||
9 | public const ANNOTATION = '#annotation'; |
||
10 | public const ANNOTATIONS = '#annotations'; |
||
11 | public const CLASS_CONSTANT = '#class_constant'; |
||
12 | public const LIST = '#list'; |
||
13 | public const MAP = '#map'; |
||
14 | public const NAMED_PARAMETERS = '#named_parameter'; |
||
15 | public const PAIR = '#pair'; |
||
16 | public const PARAMETERS = '#parameters'; |
||
17 | public const REFERENCE = '#reference'; |
||
18 | public const STANDALONE_CONSTANT = '#standalone_constant'; |
||
19 | public const STRING = '#string'; |
||
20 | public const UNNAMED_PARAMETERS = '#unnamed_parameter'; |
||
21 | public const VALUE = '#value'; |
||
22 | |||
23 | private function __construct() |
||
27 |