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

AnnotationMetadataAssembler   A

Complexity

Total Complexity 17

Size/Duplication

Total Lines 147
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 17
eloc 58
dl 0
loc 147
ccs 0
cts 60
cp 0
rs 10
c 0
b 0
f 0
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
}