Nodes::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
eloc 0
dl 0
loc 2
ccs 0
cts 1
cp 0
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
crap 2
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