Failed Conditions
Pull Request — new-parser-ast-metadata (#2)
by
unknown
02:16
created

AnnotationMetadataAssembler::assemble()   A

Complexity

Conditions 3
Paths 1

Size

Total Lines 24
Code Lines 16

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 12

Importance

Changes 0
Metric Value
eloc 16
dl 0
loc 24
ccs 0
cts 17
cp 0
rs 9.7333
c 0
b 0
f 0
cc 3
nc 1
nop 2
crap 12
1
<?php
2
3
namespace Doctrine\Annotations\Metadata\Assembler;
4
5
use Doctrine\Annotations\Metadata\AnnotationMetadata;
6
use Doctrine\Annotations\Parser\Ast\Reference;
7
use Doctrine\Annotations\Parser\Scope;
8
9
/**
10
 * @internal
11
 */
12
interface AnnotationMetadataAssembler
13
{
14
    public function assemble(Reference $reference, Scope $scope): AnnotationMetadata;
15
}