Nodes   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
eloc 14
dl 0
loc 18
rs 10
c 0
b 0
f 0
ccs 0
cts 1
cp 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Doctrine\Annotations\Parser;
6
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()
24
    {
25
    }
26
}
27