Total Complexity | 4 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Coverage | 75% |
Changes | 0 |
1 | <?php |
||
7 | abstract class Property { |
||
8 | |||
9 | /** @var string[] */ |
||
10 | protected $claim; |
||
11 | |||
12 | /** @var string */ |
||
13 | protected $lang; |
||
14 | |||
15 | /** @var CacheItemPoolInterface */ |
||
16 | protected $cache; |
||
17 | |||
18 | 2 | public function __construct( $claim, $lang, $cache ) { |
|
19 | 2 | $this->claim = $claim; |
|
20 | 2 | $this->lang = $lang; |
|
21 | 2 | $this->cache = $cache; |
|
22 | 2 | } |
|
23 | |||
24 | /** |
||
25 | * @return Reference[] |
||
26 | */ |
||
27 | 1 | public function getReferences() { |
|
36 | } |
||
37 | } |
||
38 |