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

AnnotationMetadataAssembler::assembleProperty()   A

Complexity

Conditions 4
Paths 3

Size

Total Lines 25
Code Lines 13

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 20

Importance

Changes 0
Metric Value
eloc 13
dl 0
loc 25
ccs 0
cts 14
cp 0
rs 9.8333
c 0
b 0
f 0
cc 4
nc 3
nop 2
crap 20
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
}