Completed
Push — master ( d10f54...00ced4 )
by
unknown
05:32
created

AbstractAnnotationAnalyzer   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 10
rs 10
c 0
b 0
f 0
ccs 3
cts 3
cp 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
0 ignored issues
show
Coding Style introduced by
End of line character is invalid; expected "\n" but found "\r\n"
Loading history...
2
/**
3
 * Created by Ruslan Molodyko.
4
 * Date: 10.09.2016
5
 * Time: 17:48
6
 */
7
namespace samsonframework\container\definition\analyzer\annotation;
8
9
use Doctrine\Common\Annotations\AnnotationReader;
10
11
class AbstractAnnotationAnalyzer
12
{
13
    /** @var AnnotationReader */
14
    protected $reader;
15
16 2
    public function __construct(AnnotationReader $annotationReader)
17
    {
18 2
        $this->reader = $annotationReader;
19 2
    }
20
}
21