Failed Conditions
Push — type ( 257e93...5997a7 )
by Michael
02:15
created

Nodes   A

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
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 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\TypeParser;
6
7
/**
8
 * @internal
9
 */
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()
27
    {
28
    }
29
}
30