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

AnnotationMetadataAssembler::findAnnotation()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 11
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 12

Importance

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