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

AnnotationMetadataAssembler::determineTarget()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 10
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 6

Importance

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