Completed
Push — master ( 019907...013ee6 )
by Vitaly
03:05
created

AbstractAnnotationResolver   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 100%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
/**
3
 * Created by Vitaly Iegorov <[email protected]>.
4
 * on 07.08.16 at 13:30
5
 */
6
namespace samsonframework\container\annotation;
7
8
use Doctrine\Common\Annotations\Reader;
9
10
/**
11
 * Abstract annotation resolver.
12
 * @author Vitaly Iegorov <[email protected]>
13
 */
14
abstract class AbstractAnnotationResolver
15
{
16
    /** @var Reader */
17
    protected $reader;
18
19
    /**
20
     * AnnotationPropertyResolver constructor.
21
     *
22
     * @param Reader        $reader
23
     */
24 13
    public function __construct(Reader $reader)
25
    {
26 13
        $this->reader = $reader;
27 13
    }
28
}
29